|
60 | 60 | - name: Test libmimalloc-sys crate bindings (extended)
|
61 | 61 | run: cargo run --features extended -p libmimalloc-sys-test
|
62 | 62 |
|
| 63 | + - name: Build (v3, secure) |
| 64 | + run: cargo build --features v3,secure |
| 65 | + |
| 66 | + - name: Test (v3, secure) |
| 67 | + run: cargo test --features v3,secure |
| 68 | + |
| 69 | + - name: Test libmimalloc-sys crate bindings (v3, secure) |
| 70 | + run: cargo run --features v3,secure -p libmimalloc-sys-test |
| 71 | + |
| 72 | + - name: Build (v3, no secure) |
| 73 | + run: cargo build --features v3 |
| 74 | + |
| 75 | + - name: Test (v3, no secure) |
| 76 | + run: cargo test --features v3 |
| 77 | + |
| 78 | + - name: Test libmimalloc-sys crate bindings (v3, no secure) |
| 79 | + run: cargo run --features v3 -p libmimalloc-sys-test |
| 80 | + |
| 81 | + - name: Build (v3, extended) |
| 82 | + run: cargo build --features v3,extended |
| 83 | + |
| 84 | + - name: Test (v3, extended) |
| 85 | + run: cargo test --features v3,extended |
| 86 | + |
| 87 | + - name: Test libmimalloc-sys crate bindings (v3, extended) |
| 88 | + run: cargo run --features v3,extended -p libmimalloc-sys-test |
| 89 | + |
63 | 90 | lint:
|
64 | 91 | name: Rustfmt / Clippy
|
65 | 92 | runs-on: ubuntu-latest
|
|
0 commit comments