Skip to content

Commit 102587d

Browse files
Fix CI testing of secure feature
1 parent d8b9efa commit 102587d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ jobs:
3434
toolchain: ${{ matrix.toolchain }}
3535

3636
- name: Build (secure)
37-
run: cargo build
37+
run: cargo build --features secure
3838

3939
- name: Test (secure)
40-
run: cargo test
40+
run: cargo test --features secure
4141

4242
- name: Test libmimalloc-sys crate bindings (secure)
43-
run: cargo run -p libmimalloc-sys-test
43+
run: cargo run --features secure -p libmimalloc-sys-test
4444

4545
- name: Build (no secure)
46-
run: cargo build --no-default-features
46+
run: cargo build
4747

4848
- name: Test (no secure)
49-
run: cargo test --no-default-features
49+
run: cargo test
5050

5151
- name: Test libmimalloc-sys crate bindings (no secure)
52-
run: cargo run --no-default-features -p libmimalloc-sys-test
52+
run: cargo run -p libmimalloc-sys-test
5353

5454
lint:
5555
name: Rustfmt / Clippy

0 commit comments

Comments
 (0)