From f62079375a04ec99f76d866f5712a64dd839e9fa Mon Sep 17 00:00:00 2001 From: Christian Meissl Date: Sat, 15 Jan 2022 19:35:26 +0100 Subject: [PATCH] disable clippy non-send-fields-in-send-ty --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f2657c..748987e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,12 +64,12 @@ jobs: uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --features "test_all_features" -- -D warnings + args: --features "test_all_features" -- -D warnings -A clippy::non-send-fields-in-send-ty - name: Clippy Anvil uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --manifest-path "./anvil/Cargo.toml" --features "test_all_features" -- -D warnings + args: --manifest-path "./anvil/Cargo.toml" --features "test_all_features" -- -D warnings -A clippy::non-send-fields-in-send-ty check-minimal: env: