Skip to content

Commit

Permalink
Update Rust workflow to add clippy component
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Jan 9, 2024
1 parent 28a8127 commit 53d1741
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup update ${{ matrix.toolchain }}
- run: rustup default ${{ matrix.toolchain }}
- run: rustup component add clippy
- run: cd rust && cargo clippy -- -Dwarnings
- run: cd rust && cargo build --verbose
- run: cd rust && cargo test --verbose
Expand Down

0 comments on commit 53d1741

Please sign in to comment.