diff --git a/.github/workflows/fuzzer-test.yaml b/.github/workflows/fuzzer-test.yaml new file mode 100644 index 00000000000000..0aca86d8d3cd52 --- /dev/null +++ b/.github/workflows/fuzzer-test.yaml @@ -0,0 +1,26 @@ +name: "Fuzzers test" + +on: + pull_request: + types: [labeled, opened, synchronize, reopened, auto_merge_enabled] + push: + branches: + - main + workflow_dispatch: + +jobs: + test-fuzzer: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Dependencies + shell: bash + run: | + scripts/dev_setup.sh + + - name: Test Fuzzers + shell: bash + run: | + cd testsuite/fuzzer && ./fuzz.sh test \ No newline at end of file