File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,22 +34,22 @@ jobs:
34
34
toolchain : ${{ matrix.toolchain }}
35
35
36
36
- name : Build (secure)
37
- run : cargo build
37
+ run : cargo build --features secure
38
38
39
39
- name : Test (secure)
40
- run : cargo test
40
+ run : cargo test --features secure
41
41
42
42
- 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
44
44
45
45
- name : Build (no secure)
46
- run : cargo build --no-default-features
46
+ run : cargo build
47
47
48
48
- name : Test (no secure)
49
- run : cargo test --no-default-features
49
+ run : cargo test
50
50
51
51
- 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
53
53
54
54
lint :
55
55
name : Rustfmt / Clippy
You can’t perform that action at this time.
0 commit comments