Use --workspace instead of --all for clippy

This commit is contained in:
Thom Chiovoloni 2020-04-07 09:46:35 -07:00
parent 57749b8dbc
commit 74e815fb6d

View File

@ -75,14 +75,14 @@ jobs:
with:
command: clippy
# clippy with just bundled
args: --all-targets --all --features bundled
args: --all-targets --workspace --features bundled
- uses: actions-rs/cargo@v1
env:
RUSTFLAGS: -D warnings
with:
command: clippy
# Clippy with bundled-full
args: --all-targets --all --features bundled-full
args: --all-targets --workspace --features bundled-full
# Ensure patch is formatted.
fmt: