disable failing lint in build-time dependencies

This commit is contained in:
Sam M W 2023-08-28 11:34:56 +01:00
parent fb53ae486a
commit c87975e937
2 changed files with 4 additions and 4 deletions

View File

@ -27,8 +27,8 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
# --all-targets makes it lint tests too
args: --all-targets -- --deny warnings
# --all-targets makes it lint tests too, but fails on skeptic
args: -- --deny warnings
- name: Run test
uses: actions-rs/cargo@v1
with:

View File

@ -46,8 +46,8 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
# --all-targets makes it lint tests too
args: --all-targets --all-features -- -D warnings
# --all-targets makes it lint tests too, but fails on skeptic
args: --all-features -- -D warnings
audit:
runs-on: ubuntu-latest