]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CI: bring GitHub Actions fuzzing job in line with macOS jobs
authorMarc Hoersken <info@marc-hoersken.de>
Tue, 24 Mar 2020 17:19:35 +0000 (18:19 +0100)
committerMarc Hoersken <info@marc-hoersken.de>
Tue, 24 Mar 2020 17:19:35 +0000 (18:19 +0100)
Update YAML formatting, job naming and triggers.

.github/workflows/fuzz.yml

index 296acc7970115487cee4b9faef21627e234433fb..167ae242950523fb6150684a8e36cdaaa9d8544e 100644 (file)
@@ -1,7 +1,9 @@
-name: CIFuzz
-on: [pull_request]
+name: CI
+
+on: [push, pull_request]
+
 jobs:
-  Fuzzing:
+  fuzzing:
     runs-on: ubuntu-latest
     steps:
     - name: Build Fuzzers
@@ -9,12 +11,14 @@ jobs:
       with:
         oss-fuzz-project-name: 'curl'
         dry-run: false
+
     - name: Run Fuzzers
       uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
       with:
         oss-fuzz-project-name: 'curl'
         fuzz-seconds: 600
         dry-run: false
+
     - name: Upload Crash
       uses: actions/upload-artifact@v1
       if: failure()