From 8bdae3ba8d86ef7fe155fe01e3bf9105395d366c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sp=C3=B6ttel?= <1682504+fspoettel@users.noreply.github.com> Date: Sat, 21 Oct 2023 21:20:29 +0200 Subject: [PATCH] ci: disable clippy --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63ac1ee..5b7b012 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ env: jobs: test: runs-on: ubuntu-latest - name: Lint & test + name: CI steps: - uses: actions/checkout@v3 - name: Set up cargo cache @@ -25,10 +25,9 @@ jobs: restore-keys: ${{ runner.os }}-cargo- - name: cargo test run: cargo test - # uncomment to enable clippy linter - - name: cargo clippy - run: cargo clippy -- -D warnings + # - name: cargo clippy + # run: cargo clippy -- -D warnings # uncomment to enable format linter - - name: cargo fmt - run: cargo fmt --check + # - name: cargo fmt + # run: cargo fmt --check