Skip to content

Commit

Permalink
CI clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mrLSD committed Jun 30, 2024
1 parent eca4f4a commit fb54203
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os:
- ubuntu-latest
rust:
- stable
- nightly

steps:
- uses: actions/checkout@v4
Expand All @@ -30,6 +30,6 @@ jobs:
- name: Format
run: cargo fmt --all -- --check
- name: Clippy no-default-features
run: cargo +nightly clippy --all --all-targets --no-default-features -- -D warnings
run: cargo clippy --all --all-targets --no-default-features -- -D warnings
- name: Clippy
run: cargo +nightly clippy --all --all-targets --all-features -- -D warnings
run: cargo clippy --all --all-targets --all-features -- -D warnings

0 comments on commit fb54203

Please sign in to comment.