diff options
author | Yuchen Wu <[email protected]> | 2024-09-23 08:28:28 -0700 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-09-23 09:16:26 -0700 |
commit | 6d917b424ad3f62d9116091097b60bde02f38152 (patch) | |
tree | af06751e692ccd175c27445a9ef002314dabe536 /.github/workflows/build.yml | |
parent | 0df7b0de1652e5a2639a6e0fd330516bf28d5999 (diff) | |
download | pingora-6d917b424ad3f62d9116091097b60bde02f38152.tar.gz pingora-6d917b424ad3f62d9116091097b60bde02f38152.zip |
Only run clippy on the latest stable Rust
Otherwise it requires extra attention for deprecated clippy rules
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9fa1390..01c90c1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: - name: Run cargo clippy run: | - [[ ${{ matrix.toolchain }} == nightly ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings + [[ ${{ matrix.toolchain }} != 1.80 ]] || cargo clippy --all-targets --all -- --allow=unknown-lints --deny=warnings - name: Run cargo audit run: | |