Skip to content

Commit

Permalink
ci: add clippy and miri runs
Browse files Browse the repository at this point in the history
  • Loading branch information
fooker committed Oct 14, 2024
1 parent 13b6fe4 commit e0c3ec7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
nix develop --command \
cargo fmt --all -- --check
- name: Check Clippy
run: |
nix develop --command \
cargo clippy
- name: Audit rust dependencies
run: |
nix develop --command \
Expand Down Expand Up @@ -109,6 +114,13 @@ jobs:
nix develop --command \
cargo test --all --verbose
- name: Run miri
run: |
nix develop --command \
cargo miri test
env:
MIRIFLAGS: -Zmiri-strict-provenance

package:
runs-on: ubuntu-latest
needs: [ "check" ]
Expand Down

0 comments on commit e0c3ec7

Please sign in to comment.