Skip to content

Commit deac42b

Browse files
committed
chore(ci): Match rust-next to ci
1 parent d5ea9d3 commit deac42b

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/rust-next.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,13 @@ jobs:
3838
- uses: Swatinem/rust-cache@v2
3939
- uses: taiki-e/install-action@cargo-hack
4040
- name: Build
41-
run: cargo test --workspace --no-run
42-
- name: Test
43-
run: cargo hack test --feature-powerset --workspace
41+
run: cargo test --no-run --workspace --all-features
42+
- name: Default features
43+
run: cargo test --workspace
44+
- name: All features
45+
run: cargo test --workspace --all-features
46+
- name: No-default features
47+
run: cargo test --workspace --no-default-features
4448
latest:
4549
name: "Check latest dependencies"
4650
runs-on: ubuntu-latest
@@ -56,6 +60,10 @@ jobs:
5660
- name: Update dependencies
5761
run: cargo update
5862
- name: Build
59-
run: cargo test --workspace --no-run
60-
- name: Test
61-
run: cargo hack test --feature-powerset --workspace
63+
run: cargo test --no-run --workspace --all-features
64+
- name: Default features
65+
run: cargo test --workspace
66+
- name: All features
67+
run: cargo test --workspace --all-features
68+
- name: No-default features
69+
run: cargo test --workspace --no-default-features

0 commit comments

Comments
 (0)