Skip to content

Commit

Permalink
chore: remove --workspace from clippy check
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Mar 29, 2024
1 parent f981b3e commit 954ce7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- name: Rustfmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D clippy::all -D clippy::nursery
- name: Clippy
run: cargo clippy --workspace --all-targets --no-default-features -- -D clippy::all -D clippy::nursery
run: cargo clippy --all-targets -- -D clippy::all -D clippy::nursery
- name: Clippy no_std
run: cargo clippy --all-targets --no-default-features -- -D clippy::all -D clippy::nursery
build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 954ce7f

Please sign in to comment.