add(ci/makefile): run clippy on all features (#1479)
Run clippy on all exposed features, to minimize the possiblility of breakage.
This commit is contained in:
parent
10baf303c9
commit
edac2eb5a9
2 changed files with 2 additions and 2 deletions
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
|
@ -76,4 +76,4 @@ jobs:
|
|||
uses: actions-rs/clippy-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --all-features
|
||||
args: --all-features --all-targets
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ args = [
|
|||
|
||||
# Simple clippy tweak
|
||||
[tasks.clippy]
|
||||
args = ["clippy", "--all-targets", "--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
|
||||
args = ["clippy", "--all-targets","--all-features","--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
|
||||
|
||||
# Release building and installing Zellij
|
||||
[tasks.install]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue