Browse Source

Update cifuzz.yml

restrict running fuzzer for modification of  *.c and *.h only.
master
zdenop 2 months ago
committed by GitHub
parent
commit
4ce819fbc6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      .github/workflows/cifuzz.yml

11
.github/workflows/cifuzz.yml

@ -1,5 +1,13 @@
name: CIFuzz
on: [pull_request]
# OSS-Fuzz CI
# See https://google.github.io/oss-fuzz/getting-started/continuous-integration/
on:
pull_request:
branches:
- main
paths:
- '**.c'
- '**.h'
jobs:
Fuzzing:
runs-on: ubuntu-latest
@ -9,6 +17,7 @@ jobs:
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'leptonica'
language: c
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master

Loading…
Cancel
Save