Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wenyuzhao committed Mar 13, 2024
1 parent 38088c2 commit 8c41abe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ jobs:
- name: Run tests
run: cargo test
- name: Run fmt checks
run: cargo fmt -- --check
run: |
rustup component add rustfmt
cargo fmt -- --check
- name: Run lints
run: cargo clippy -- -D warnings
run: |
rustup component add clippy
cargo clippy -- -D warnings
- name: Test (Debug)
run: cargo test
- name: Test (Release)
Expand Down

0 comments on commit 8c41abe

Please sign in to comment.