Skip to content

Commit d03a78f

Browse files
committed
Enable MemorySanitizer in CI tests
1 parent 76027db commit d03a78f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/tests.yml

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: docker run --env RUSTFLAGS="-Z sanitizer=leak" cargo-build cargo test --color=always
1919
- name: AddressSanitizer
2020
run: docker run --env RUSTFLAGS="-Z sanitizer=address" cargo-build cargo test --color=always
21+
- name: MemorySanitizer
22+
run: docker run --env RUSTFLAGS="-Z sanitizer=memory" cargo-build cargo test --color=always
2123

2224
rust-stable:
2325
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)