mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Fuzzing workflow (#230)
Add a CIFuzz workflow (and a corresponding badge to the README)
This commit is contained in:
parent
b9531290af
commit
42431bbba8
23
.github/workflows/fuzz.yml
vendored
Normal file
23
.github/workflows/fuzz.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: CIFuzz
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
Fuzzing:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Build Fuzzers
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||||
with:
|
||||
oss-fuzz-project-name: 'mdbtools'
|
||||
dry-run: false
|
||||
- name: Run Fuzzers
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||||
with:
|
||||
oss-fuzz-project-name: 'mdbtools'
|
||||
fuzz-seconds: 600
|
||||
dry-run: false
|
||||
- name: Upload Crash
|
||||
uses: actions/upload-artifact@v1
|
||||
if: failure()
|
||||
with:
|
||||
name: artifacts
|
||||
path: ./out/artifacts
|
@ -1,5 +1,6 @@
|
||||
[](https://github.com/mdbtools/mdbtools/actions)
|
||||
[](https://ci.appveyor.com/project/evanmiller/mdbtools/branch/dev)
|
||||
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:mdbtools)
|
||||
|
||||
Welcome to the exciting world of MDB Tools! MDB Tools is a set of programs to
|
||||
help you extract data from Microsoft Access files in various settings. See the
|
||||
|
Loading…
Reference in New Issue
Block a user