Clippy lints in your Pull Requests
This GitHub Action executes clippy and posts all lints as annotations for the pushed commit 1.
This GitHub Action has been forked from actions-rs/clippy-check.
The original project published under the name rust-clippy-check.
See LICENSE for copyright attribution details.
Note: this workflow uses actions-rust-lang/setup-rust-toolchain to install the most recent nightly clippy.
name: Clippy check
on: push
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions-rust-lang/setup-rust-toolchain@a0b538fa0b742a6aa35d6e2c169b4bd06d225a98 # v1.15.3
with:
toolchain: nightly
components: clippy
- uses: clechasseur/rs-clippy-check@v6.0.2
with:
args: --all-featuresAll inputs are optional.
| Name | Required | Description | Type | Default |
|---|---|---|---|---|
toolchain |
Rust toolchain name to use | string | ||
args |
Arguments for the cargo clippy command |
string | ||
working-directory |
Directory where to perform the cargo clippy command |
string | ||
tool |
Tool to use instead of cargo (cross or cargo-hack) |
string | ||
cache-key |
Cache key when using a non-cargo tool |
string | rs-clippy-check |
For extra details about the toolchain, args, tool and cache-key inputs, see rs-cargo Action.
Starting with release 6.0.0, this GitHub action's releases will be marked as immutable. This means that once a release is created, its tag cannot be modified in any way.
Previously, best practices for using GitHub actions in workflows were to pin the actions to a specific Git commit hash. With immutable releases, this is no longer necessary and the actual Git tag is safe to use. Because of this, starting with release 6.0.0, this GitHub action will no longer provide a floating major version tag (like v6, for example). To use a specific version of this action, pin it to the release tag (like v6.0.0).
1 : Currently, GitHub sets a limit of 10 annotations of each type per run (see this page for more information). So if there are more than 10 such lints of one type reported by clippy, only the first 10 will appear as PR annotations. The other lints will still appear in the check run summary (see this one for example).
