We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a4dff commit 1f8298bCopy full SHA for 1f8298b
.github/workflows/ci.yml
@@ -223,3 +223,15 @@ jobs:
223
run: sudo apt-get install wine64 mingw-w64
224
- name: Build and test
225
run: env CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUNNER=wine64 cargo test --features hdf5-sys/static --target x86_64-pc-windows-gnu -- --skip test_compile_fail
226
+ addr_san:
227
+ name: Address sanitizer
228
+ runs-on: ubuntu-latest
229
+ steps:
230
+ - name: Checkout repository
231
+ uses: actions/checkout@v2
232
+ with: {submodules: true}
233
+ - name: Install Rust
234
+ uses: actions-rs/toolchain@v1
235
+ with: {toolchain: nightly, profile: minimal, override: true}
236
+ - name: Run test with sanitizer
237
+ run: env RUSTFLAGS="-Z sanitizer=address" cargo test --features hdf5-sys/static --target x86_64-unknown-linux-gnu --exclude hdf5-derive
0 commit comments