Skip to content

Commit

Permalink
Only run strict lint check on stable Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharparam committed Oct 22, 2024
1 parent ddcfeff commit e3a22e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,10 @@ jobs:
- name: Run cargo fmt
run: cargo fmt --all --check --verbose
- uses: clechasseur/rs-clippy-check@v3
if: matrix.rust == 'stable'
with:
args: --all-features -- -D warnings
- uses: clechasseur/rs-clippy-check@v3
if: matrix.rust != 'stable'
with:
args: --all-features -- -W warnings

0 comments on commit e3a22e1

Please sign in to comment.