Skip to content

Commit 05ca0e1

Browse files
committed
fix ci features
1 parent 90cadf7 commit 05ca0e1

1 file changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/rust.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ env:
1111

1212
jobs:
1313
build:
14-
strategy:
15-
matrix:
16-
features: ["--features parallel", "--no-default-features"]
1714
runs-on: ubuntu-latest
18-
name: Build & Test (${{ matrix.features }})
15+
name: Build & Test
1916

2017
steps:
2118
- uses: actions/checkout@v4
@@ -24,16 +21,13 @@ jobs:
2421
with:
2522
toolchain: nightly
2623
- name: Build
27-
run: cargo build --release --verbose ${{ matrix.features }}
24+
run: cargo build --release --verbose
2825
- name: Run tests
29-
run: cargo test --release --verbose ${{ matrix.features }}
26+
run: cargo test --release --verbose
3027

3128
cargo-clippy:
32-
strategy:
33-
matrix:
34-
features: ["--features parallel", "--no-default-features"]
3529
runs-on: ubuntu-latest
36-
name: Clippy (${{ matrix.features }})
30+
name: Clippy
3731

3832
steps:
3933
- uses: actions/checkout@v4
@@ -43,7 +37,7 @@ jobs:
4337
toolchain: nightly
4438
components: clippy
4539
- name: Clippy Check
46-
run: cargo clippy --workspace --all-targets ${{ matrix.features }} -- -Dwarnings
40+
run: cargo clippy --workspace --all-targets -- -Dwarnings
4741

4842
cargo-fmt:
4943
name: Cargo fmt

0 commit comments

Comments
 (0)