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 46c43ee commit f6689baCopy full SHA for f6689ba
.github/workflows/cifuzz.yml
.github/workflows/fuzzing.yml
@@ -0,0 +1,29 @@
1
+name: Fuzzing
2
+on:
3
+ push:
4
+ branches: ["master"]
5
+
6
+jobs:
7
+ fuzzing:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Build Fuzzers
11
+ id: build
12
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
13
+ with:
14
+ oss-fuzz-project-name: "libmodbus"
15
+ dry-run: false
16
+ language: c
17
+ - name: Run Fuzzers
18
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
19
20
21
+ fuzz-seconds: 300
22
23
24
+ - name: Upload artifacts
25
+ uses: actions/upload-artifact@v3
26
+ if: failure() && steps.build.outcome == 'success'
27
28
+ name: artifacts
29
+ path: ./out/artifacts
0 commit comments