Skip to content

Commit

Permalink
Enables clippy on workspace members
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Mar 18, 2024
1 parent abd0265 commit cc1b9b2
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,20 @@ jobs:
- name: Check Rust styles
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
run: cargo clippy --workspace -- -D warnings
mac:
name: Build (Mac)
runs-on: macos-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Check Rust styles
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
run: cargo clippy --workspace -- -D warnings
windows:
name: Build (Windows)
runs-on: windows-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Check Rust styles
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
run: cargo clippy --workspace -- -D warnings

0 comments on commit cc1b9b2

Please sign in to comment.