diff options
-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 |