Skip to content

Commit

Permalink
fix the position of the --release arg
Browse files Browse the repository at this point in the history
before this patch it looked like this, i.e., --release after the --

cargo hack --feature-powerset clippy --locked --workspace --all-targets -- -A unknown_lints -D warnings --release
  • Loading branch information
problame committed Apr 26, 2023
1 parent 34ebbd3 commit fbc9e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
- name: Run cargo clippy (debug)
run: cargo hack --feature-powerset clippy $CLIPPY_COMMON_ARGS
- name: Run cargo clippy (release)
run: cargo hack --feature-powerset clippy $CLIPPY_COMMON_ARGS --release
run: cargo hack --feature-powerset clippy --release $CLIPPY_COMMON_ARGS

# Use `${{ !cancelled() }}` to run quck tests after the longer clippy run
- name: Check formatting
Expand Down

0 comments on commit fbc9e8c

Please sign in to comment.