Skip to content

fix seed for bloom filter test where we use probabilistic bounds #56

fix seed for bloom filter test where we use probabilistic bounds

fix seed for bloom filter test where we use probabilistic bounds #56

Workflow file for this run

name: Sanitize
on:
pull_request:
branches:
- master
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
build:
name: Address Sanitizer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
persist-credentials: false
- name: Configure
run: cmake -B build -S . -DSANITIZE=address
- name: Build C++ unit tests
run: cmake --build build --config Release
- name: Run C++ tests
run: cmake --build build --config Release --target test