Skip to content

Commit 517651c

Browse files
committed
chore(github): run cargo check against workspace
1 parent 599a96e commit 517651c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ jobs:
3939
rustup default stable
4040
shell: bash
4141
- name: Build without default features
42-
run: cargo check --no-default-features
42+
run: cargo check --workspace --no-default-features
4343
- name: Build the `wat` feature
44-
run: cargo check --no-default-features --features wat
44+
run: cargo check --workspace --no-default-features --features wat
4545
- name: Build the `wit` feature
46-
run: cargo check --no-default-features --features wit
46+
run: cargo check --workspace --no-default-features --features wit
4747
- name: Build the `registry` feature
48-
run: cargo check --no-default-features --features registry
48+
run: cargo check --workspace --no-default-features --features registry
4949
- name: Build the `serde` feature
50-
run: cargo check --no-default-features --features serde
50+
run: cargo check --workspace --no-default-features --features serde
5151
- name: Build all features
52-
run: cargo check --all-features
52+
run: cargo check --workspace --all-features
5353

5454
rustfmt:
5555
name: Format source code

0 commit comments

Comments
 (0)