diff options
author | Nadrieril | 2021-04-03 18:28:29 +0100 |
---|---|---|
committer | Nadrieril | 2021-04-03 18:28:29 +0100 |
commit | 363af3fad6b0bb7430ad4612f4eb2da8b36b265a (patch) | |
tree | 295c0dd96f34c875bad9c1ebb3d7013e364c1c7d | |
parent | a31a0d6af2e9c0d206c30d41da1721548b7aacb7 (diff) |
ci: give up on clippy
-rw-r--r-- | .github/workflows/style.yml | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index bb1e399..013732a 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -26,23 +26,24 @@ jobs: command: fmt args: --all -- --check - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - name: Checkout branch - uses: actions/checkout@master - with: - submodules: true - - name: Setup Rust toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: 1.51.0 - components: clippy - override: true - - name: Run clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings + # Gave up on clippy, because different versions give different lints and it's not even forward- or backwards-compatible + # clippy: + # name: Clippy + # runs-on: ubuntu-latest + # steps: + # - name: Checkout branch + # uses: actions/checkout@master + # with: + # submodules: true + # - name: Setup Rust toolchain + # uses: actions-rs/toolchain@v1 + # with: + # profile: minimal + # toolchain: 1.51.0 + # components: clippy + # override: true + # - name: Run clippy + # uses: actions-rs/cargo@v1 + # with: + # command: clippy + # args: -- -D warnings |