Merge pull request #51 from AlessandroBregoli/50-meta-make-clippy-less-pedantic-in-github-workflows

Nerfed clippy in GitHub Workflows
pull/53/head
Meliurwen 2 years ago committed by GitHub
commit 3ff3dc564e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/build.yml
  2. 10
      README.md

@ -26,7 +26,7 @@ jobs:
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
args: --all-targets -- -D warnings -A clippy::all -W clippy::correctness
- name: Tests (test)
uses: actions-rs/cargo@v1
with:

@ -37,8 +37,14 @@ To launch **tests**:
cargo test
```
To **lint**:
To **lint** with `cargo check`:
```sh
cargo check
cargo check --all-targets
```
Or with `clippy`:
```sh
cargo clippy --all-targets -- -A clippy::all -W clippy::correctness
```

Loading…
Cancel
Save