Skip to content

Commit

Permalink
Revert clippy rust_version check
Browse files Browse the repository at this point in the history
  • Loading branch information
VianneyRuhlmann committed Jun 13, 2024
1 parent 2a4c848 commit 83eb562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: rustup install ${{ matrix.rust_version }} && rustup default ${{ matrix.rust_version }} && rustup component add clippy
- name: Run clippy on ${{ matrix.platform }} ${{ matrix.rust_version }}
shell: bash
run: cargo clippy --all-targets --all-features -- -D warnings $([[ ${{ matrix.rust_version }} == "1.71.1" ]] && echo -A unknown-lints)
run: cargo clippy --all-targets --all-features -- -D warnings $([ ${{ matrix.rust_version }} = 1.71.1 ] && echo -Aunknown-lints)
licensecheck:
runs-on: ubuntu-latest
name: "Presence of licence headers"
Expand Down

0 comments on commit 83eb562

Please sign in to comment.