Skip to content

Commit

Permalink
ci: run clippy and test with --no-default-features
Browse files Browse the repository at this point in the history
  • Loading branch information
nrdxp committed Oct 13, 2024
1 parent 90ab179 commit 397ae5d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
- name: Eval Devshell
run: nix-instantiate shell.nix --add-root shell
- name: Check Format
run: nix-shell shell --command "treefmt --ci"
run: nix-shell shell --run "treefmt --ci"
- name: Lint
run: nix-shell shell --run "cargo clippy -- -D warnings && cargo clippy --no-default-features -- -D warnings"
- name: Run Tests
run: nix-shell shell --command "cargo test --all"
run: nix-shell shell --run "cargo test --all && cargo test --all --no-default-features"

0 comments on commit 397ae5d

Please sign in to comment.