From f03d99690da2c8f07bddaff90b0782e05771d3e0 Mon Sep 17 00:00:00 2001 From: Tamo Date: Mon, 29 May 2023 14:56:15 +0200 Subject: [PATCH] run the indexing fuzzer on every merge for as long as possible --- .github/workflows/fuzzer-indexing.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/fuzzer-indexing.yml diff --git a/.github/workflows/fuzzer-indexing.yml b/.github/workflows/fuzzer-indexing.yml new file mode 100644 index 000000000..1d01a6ea5 --- /dev/null +++ b/.github/workflows/fuzzer-indexing.yml @@ -0,0 +1,24 @@ +name: Run the indexing fuzzer + +on: + push: + branches: + - main + +jobs: + fuzz: + name: Setup the action + runs-on: ubuntu-latest + timeout-minutes: 4320 # 72h + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + # Run benchmarks + - name: Run the fuzzer + run: | + cargo run --release --bin fuzz-indexing