From a2cc8bb0dfd6681d176b7276f142ebf5e1fbdeb5 Mon Sep 17 00:00:00 2001 From: Nerijus Arlauskas Date: Sun, 29 Jun 2025 20:54:21 +0300 Subject: [PATCH 1/2] Remove -Dwarnings from clippy run --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da17594..15a486d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: components: rustfmt, clippy - run: cargo fmt --check - - run: cargo clippy --target=${{ matrix.target }} ${{ matrix.features }} -- -Dwarnings + - run: cargo clippy --target=${{ matrix.target }} ${{ matrix.features }} - run: cargo build --target=${{ matrix.target }} ${{ matrix.features }} - run: cargo doc --target=${{ matrix.target }} ${{ matrix.features }} env: From fbf60678057ccebc79b8f9a6e1e32bc83b2ec23d Mon Sep 17 00:00:00 2001 From: Nerijus Arlauskas Date: Sun, 29 Jun 2025 21:00:54 +0300 Subject: [PATCH 2/2] Don't ruin clippy in CI --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15a486d..9bcb4d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,6 @@ jobs: components: rustfmt, clippy - run: cargo fmt --check - - run: cargo clippy --target=${{ matrix.target }} ${{ matrix.features }} - run: cargo build --target=${{ matrix.target }} ${{ matrix.features }} - run: cargo doc --target=${{ matrix.target }} ${{ matrix.features }} env: