Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-11-12 16:05:37 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-11-12 16:07:50 +0300
commit1fa8429c56c126c365419603369d32510a42e2c0 (patch)
tree2eec061c027098b56c2592b0477ebc2b23cb02bc /.github
parentbdacfed056101bba427532a0839fb708e4d79f57 (diff)
Fix syntax errors in workflow file
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cifuzz.yml43
1 files changed, 21 insertions, 22 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml
index fd78006..983c738 100644
--- a/.github/workflows/cifuzz.yml
+++ b/.github/workflows/cifuzz.yml
@@ -1,5 +1,5 @@
name: CIFuzz
-on: [pull_request]
+on:
pull_request:
branches:
- master
@@ -9,24 +9,23 @@ jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- - name: Build Fuzzers
- id: build
- uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
- with:
- oss-fuzz-project-name: 'nanopb'
- dry-run: false
- sanitizer: undefined
- - name: Run Fuzzers
- uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
- with:
- oss-fuzz-project-name: 'nanopb'
- fuzz-seconds: 600
- dry-run: false
- sanitizer: undefined
- - name: Upload Crash
- uses: actions/upload-artifact@v1
- if: failure() && steps.build.outcome == 'success'
- with:
- name: artifacts
- path: ./out/artifacts
-
+ - name: Build Fuzzers
+ id: build
+ uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
+ with:
+ oss-fuzz-project-name: 'nanopb'
+ dry-run: false
+ sanitizer: undefined
+ - name: Run Fuzzers
+ uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
+ with:
+ oss-fuzz-project-name: 'nanopb'
+ fuzz-seconds: 600
+ dry-run: false
+ sanitizer: undefined
+ - name: Upload Crash
+ uses: actions/upload-artifact@v1
+ if: failure() && steps.build.outcome == 'success'
+ with:
+ name: artifacts
+ path: ./out/artifacts