diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1375ac1..db61549 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,11 +36,11 @@ jobs: - name: Build binary and tests run: cargo build --bins --tests --release - - name: Lint code - uses: actions-rs/clippy-check@v1 + - name: Clippy + uses: giraffate/clippy-action@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --release + filter_mode: nofilter + clippy_flags: --all-features --release - name: Run tests run: cargo test --release