diff options
| author | Leo Neat <leosneat@gmail.com> | 2020-02-03 15:44:52 -0800 |
|---|---|---|
| committer | Andrey Konovalov <andreyknvl@gmail.com> | 2020-02-05 14:29:19 +0100 |
| commit | 662cf49ae315772e243d80a1c87dcdee1a304196 (patch) | |
| tree | f013956b071069db71e0da8f60714f8af1919670 | |
| parent | 93e5e33559b98e47f3743e6d907ca8444fbba5d4 (diff) | |
Adding action to workflow
| -rw-r--r-- | .github/workflows/main.yml | 21 |
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 + |
