Skip to content

Commit d7baf88

Browse files
committed
fix(ci): use cargo-hack
1 parent 5401c78 commit d7baf88

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,17 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v4
3030
- uses: dtolnay/rust-toolchain@nightly
31-
- run: cargo test --workspace --verbose
31+
- uses: taiki-e/install-action@cargo-hack
32+
- run: cargo hack test --workspace --verbose
3233

3334
clippy:
3435
name: Clippy
3536
runs-on: ubuntu-latest
3637
steps:
3738
- uses: actions/checkout@v4
3839
- uses: dtolnay/rust-toolchain@clippy
39-
- run: cargo clippy --tests
40+
- uses: taiki-e/install-action@cargo-hack
41+
- run: cargo hack clippy --tests
4042

4143
fmt:
4244
name: Fmt

0 commit comments

Comments
 (0)