Merge pull request #468 from cmeissl/workaround/clippy_non_send_fields_in_send_ty
disable clippy non-send-fields-in-send-ty
This commit is contained in:
commit
8c126eeb80
|
@ -64,12 +64,12 @@ jobs:
|
||||||
uses: actions-rs/clippy-check@v1
|
uses: actions-rs/clippy-check@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
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
|
- name: Clippy Anvil
|
||||||
uses: actions-rs/clippy-check@v1
|
uses: actions-rs/clippy-check@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
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:
|
check-minimal:
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue