From 83eb5628c240b2da9697ced5dd92814d3f0b67bc Mon Sep 17 00:00:00 2001 From: Vianney Ruhlmann Date: Thu, 13 Jun 2024 17:29:26 +0200 Subject: [PATCH] Revert clippy rust_version check --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7e40a7981..2829f74c5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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"