summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavkor <david@adalogics.com>2021-01-21 20:04:22 +0000
committerdavkor <david@adalogics.com>2021-01-21 20:04:22 +0000
commit5af7e48699c7fe25d4c2f869c5f23de82de3f403 (patch)
tree3cce033411e40c33919e4b27a020d255622a7c80
parent260ca525aba50e0cf0d0b29802d6e94b073a7ffe (diff)
downloadjsonschema-5af7e48699c7fe25d4c2f869c5f23de82de3f403.tar.gz
Add CI-fuzz to ensure fuzzers are run.
-rw-r--r--.github/workflows/main.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..2d7f131
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -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: 'jsonschema'
+ dry-run: false
+ - name: Run Fuzzers
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
+ with:
+ oss-fuzz-project-name: 'jsonschema'
+ fuzz-seconds: 600
+ dry-run: false
+ - name: Upload Crash
+ uses: actions/upload-artifact@v1
+ if: failure() && steps.build.outcome == 'success'
+ with:
+ name: artifacts
+ path: ./out/artifacts