We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af7f656 commit 2ae925fCopy full SHA for 2ae925f
.github/workflows/main.yml
@@ -0,0 +1,23 @@
1
+name: CIFuzz
2
+on: [pull_request]
3
+jobs:
4
+ Fuzzing:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Build Fuzzers
8
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
9
+ with:
10
+ oss-fuzz-project-name: 'openssl'
11
+ dry-run: true
12
+ - name: Run Fuzzers
13
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
14
15
16
+ fuzz-seconds: 600
17
18
+ - name: Upload Crash
19
+ uses: actions/upload-artifact@v1
20
+ if: failure()
21
22
+ name: artifacts
23
+ path: ./out/artifacts
0 commit comments