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:
a-kenji 2022-06-10 12:21:01 +02:00 committed by GitHub
parent 10baf303c9
commit edac2eb5a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -76,4 +76,4 @@ jobs:
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
args: --all-features --all-targets

View file

@ -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]