Skip to content

Commit

Permalink
Fix CI testing of secure feature
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaniel-daniel committed Sep 14, 2023
1 parent d8b9efa commit 102587d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ jobs:
toolchain: ${{ matrix.toolchain }}

- name: Build (secure)
run: cargo build
run: cargo build --features secure

- name: Test (secure)
run: cargo test
run: cargo test --features secure

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

- name: Build (no secure)
run: cargo build --no-default-features
run: cargo build

- name: Test (no secure)
run: cargo test --no-default-features
run: cargo test

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

lint:
name: Rustfmt / Clippy
Expand Down

0 comments on commit 102587d

Please sign in to comment.