We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b62ff commit 0f63c1fCopy full SHA for 0f63c1f
1 file changed
.github/workflows/check.yml
@@ -16,7 +16,11 @@ jobs:
16
toolchain: stable
17
override: true
18
- name: Run cargo check
19
- run: cargo check --locked
+ run: cargo check --workspace --locked
20
+ - name: Run cargo check --no-default-features
21
+ run: cargo check --workspace --locked --no-default-features
22
+ - name: Run cargo check --all-features
23
+ run: cargo check --workspace --locked --all-features
24
- name: Run cargo clippy
25
run: cargo clippy -- -D warnings
26
- name: Check format
0 commit comments