From ec397502bf3a3e501beff7fc54077af64abcd6e6 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 14 Jul 2025 20:20:00 +1000 Subject: [PATCH] ci: allow pull requests to run fuzzing --- .github/workflows/rust-fuzz.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust-fuzz.yml b/.github/workflows/rust-fuzz.yml index 4ba5d33..9179864 100644 --- a/.github/workflows/rust-fuzz.yml +++ b/.github/workflows/rust-fuzz.yml @@ -1,4 +1,8 @@ -on: [push] +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] name: Quick Fuzzing @@ -7,8 +11,8 @@ env: RUST_BACKTRACE: 1 jobs: - check: - name: + fuzzing: + name: Fuzzing runs-on: ubuntu-latest steps: - name: Checkout repository