Skip to content

Merge pull request #25 from github/dependabot/cargo/thiserror-1.0.40 #73

Merge pull request #25 from github/dependabot/cargo/thiserror-1.0.40

Merge pull request #25 from github/dependabot/cargo/thiserror-1.0.40 #73

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint
run: |
cargo fmt --all -- --check
cargo clippy -- --deny warnings -D clippy::unwrap_used
cargo clippy --tests -- --deny warnings -A clippy::unwrap_used