From 662cf49ae315772e243d80a1c87dcdee1a304196 Mon Sep 17 00:00:00 2001 From: Leo Neat Date: Mon, 3 Feb 2020 15:44:52 -0800 Subject: Adding action to workflow --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github') 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 + -- cgit mrf-deployment