Skip to content

Commit

Permalink
Add --all-targets option to cargo clippy rust gh-action (gluesql#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
panarch committed Nov 19, 2022
1 parent a833f82 commit 521a7f7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: |
cd core
cargo clippy --no-default-features -- -D warnings
cargo clippy --no-default-features --features alter-table -- -D warnings
cargo clippy --no-default-features --features index -- -D warnings
cargo clippy --no-default-features --features transaction -- -D warnings
cargo clippy --no-default-features --features "alter-table index" -- -D warnings
cargo clippy --no-default-features --features "alter-table transaction" -- -D warnings
cargo clippy --no-default-features --features "index transaction" -- -D warnings
cargo clippy --no-default-features --features "alter-table index transaction" -- -D warnings
cargo clippy --all-features --all-targets -- -D warnings
cargo clippy --all-targets --no-default-features -- -D warnings
cargo clippy --all-targets --no-default-features --features alter-table -- -D warnings
cargo clippy --all-targets --no-default-features --features index -- -D warnings
cargo clippy --all-targets --no-default-features --features transaction -- -D warnings
cargo clippy --all-targets --no-default-features --features "alter-table index" -- -D warnings
cargo clippy --all-targets --no-default-features --features "alter-table transaction" -- -D warnings
cargo clippy --all-targets --no-default-features --features "index transaction" -- -D warnings
cargo clippy --all-targets --no-default-features --features "alter-table index transaction" -- -D warnings
cargo clippy --all-targets --all-features -- -D warnings
cd ../
rust_fmt:
Expand Down

0 comments on commit 521a7f7

Please sign in to comment.