diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f73a77..25ecf35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/README.md b/README.md index 36009cf..b114188 100644 --- a/README.md +++ b/README.md @@ -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 ```