Skip to content

Commit 1eddbda

Browse files
committed
Enable MemorySanitizer in CI tests
1 parent 45e3710 commit 1eddbda

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
@@ -27,6 +27,8 @@ jobs:
2727
run: docker run --env RUSTFLAGS="-Z sanitizer=leak" cargo-build cargo test --color=always
2828
- name: AddressSanitizer
2929
run: docker run --env RUSTFLAGS="-Z sanitizer=address" cargo-build cargo test --color=always
30+
- name: MemorySanitizer
31+
run: docker run --env RUSTFLAGS="-Z sanitizer=memory" cargo-build cargo test --color=always
3032

3133
rust-stable:
3234
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)