We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4fc68a commit 9537be5Copy full SHA for 9537be5
.github/workflows/cifuzz.yaml
@@ -0,0 +1,29 @@
1
+name: CIFuzz
2
+on: [pull_request]
3
+jobs:
4
+ Fuzzing:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ sanitizer: [address]
10
+ steps:
11
+ - name: Build Fuzzers (${{ matrix.sanitizer }})
12
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
13
+ with:
14
+ oss-fuzz-project-name: 'go-sqlite3'
15
+ dry-run: false
16
+ sanitizer: ${{ matrix.sanitizer }}
17
+ - name: Run Fuzzers (${{ matrix.sanitizer }})
18
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
19
20
21
+ fuzz-seconds: 600
22
23
24
+ - name: Upload Crash
25
+ uses: actions/upload-artifact@v1
26
+ if: failure()
27
28
+ name: ${{ matrix.sanitizer }}-artifacts
29
+ path: ./out/artifacts
0 commit comments