Skip to content

Commit

Permalink
Place flags first
Browse files Browse the repository at this point in the history
  • Loading branch information
ark0f committed Jul 19, 2023
1 parent 713e2fa commit ecdd8ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,22 +311,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace -- -D warnings $CLIPPY_FLAGS
args: --workspace -- $CLIPPY_FLAGS -D warnings
- name: Clippy (all features)
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-features -- -D warnings $CLIPPY_FLAGS
args: --workspace --all-features -- $CLIPPY_FLAGS -D warnings
- name: Clippy (no_std)
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --no-default-features -- -D warnings $CLIPPY_FLAGS
args: --workspace --no-default-features -- $CLIPPY_FLAGS -D warnings
- name: Clippy (tests)
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --tests -- -D warnings $CLIPPY_FLAGS
args: --workspace --tests -- $CLIPPY_FLAGS -D warnings

coverage:
name: Coverage
Expand Down

0 comments on commit ecdd8ba

Please sign in to comment.