You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Executing `cargo clippy`...
$ /home/runner/.cargo/bin/cargo clippy --message-format json --features "nested-values dynamic-keys nothreads" --all-targets --
error: Found argument 'dynamic-keys' which wasn't expected, or isn't valid in this context
USAGE:
cargo check --features <FEATURES>... --message-format <FMT>...
For more information try --help
Clippy exited with code 1
This all works fine when I run cargo check/cargo clippy explicitly:
- name: Check# A failing `cargo check` always ends the buildrun: | cargo check --all-targets --verbose --features "${{ matrix.features }}"
I suspect the difference between the two situations is bash quoting.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi! I use a matrix to define my features
But this seems to cause issues when substituting into
check-args
:I end up with this error:
This all works fine when I run
cargo check
/cargo clippy
explicitly:I suspect the difference between the two situations is bash quoting.
Here is the full log for the explicit
check
,auguwu/clippy-action
and my workspace file: https://gist.github.com/Techcable/3f7bbfa4df5036cfec22f25f74d4f704Beta Was this translation helpful? Give feedback.
All reactions