Skip to content

Commit

Permalink
Merge pull request #498 from DavidKorczynski/cifuzz-int
Browse files Browse the repository at this point in the history
Add CIFuzz Github action
  • Loading branch information
mgeisler authored Nov 27, 2022
2 parents 090e310 + 90b4e1f commit be97687
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CIFuzz
on: [pull_request]
jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'textwrap'
language: rust
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'textwrap'
fuzz-seconds: 300
language: rust
- name: Upload Crash
uses: actions/upload-artifact@v3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts

0 comments on commit be97687

Please sign in to comment.