aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLeo Neat <leosneat@gmail.com>2020-02-03 15:44:52 -0800
committerAndrey Konovalov <andreyknvl@gmail.com>2020-02-05 14:29:19 +0100
commit662cf49ae315772e243d80a1c87dcdee1a304196 (patch)
treef013956b071069db71e0da8f60714f8af1919670 /.github
parent93e5e33559b98e47f3743e6d907ca8444fbba5d4 (diff)
Adding action to workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 000000000..08b292435
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,21 @@
+name: CIFuzz
+
+on: [pull_request]
+
+jobs:
+ fuzz:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Building and running fuzzers
+ uses: google/oss-fuzz/infra/cifuzz/actions@master
+ with:
+ project-name: 'syzkaller'
+ fuzz-time: 360
+ dry-run: True
+ - uses: actions/upload-artifact@v1
+ with:
+ name: fuzzer_testcase
+ path: ./out/testcase
+