Skip to content

Commit

Permalink
CI: Start using skat/action-clippy instead of actions-rs/clippy-check
Browse files Browse the repository at this point in the history
Because actions-rs/clippy-check is unmaintained and has serious issues we
switched to skat/action-clippy.

See also actions-rs/clippy-check#162
  • Loading branch information
katyo committed Feb 26, 2023
1 parent 5ff6c2b commit 77bdf33
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
check:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v1
with:
Expand All @@ -86,10 +88,12 @@ jobs:
with:
path: target
key: ${{ runner.os }}-build-rust_nightly-check-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/clippy-check@v1
- uses: sksat/action-clippy@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all --all-features
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-check
fail_on_error: true
clippy_flags: --all --all-targets --features full-async

test:
needs:
Expand Down

0 comments on commit 77bdf33

Please sign in to comment.