Skip to content

Commit 484cd78

Browse files
committed
feat(ci): also test with the rustc-hash feature
1 parent e7976ec commit 484cd78

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/CI.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ env:
1212
jobs:
1313
cargo-test:
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
features:
18+
- default
19+
- rustc-hash
1520
steps:
1621
- uses: actions/checkout@v4
1722
- uses: dtolnay/rust-toolchain@stable
1823
- uses: Swatinem/rust-cache@v2
19-
- run: cargo test
24+
- run: cargo test --no-default-features --features "${{ matrix.features }}"

0 commit comments

Comments
 (0)