diff options
author | davkor <david@adalogics.com> | 2021-01-21 22:44:51 +0000 |
---|---|---|
committer | davkor <david@adalogics.com> | 2021-01-21 22:44:51 +0000 |
commit | f62a9aeaba6a0d3559d0f061b6c9daf0e1266768 (patch) | |
tree | d51003238b5de8e5a657279ddd702e07c1b94f74 /.github | |
parent | 708d518add4a33f86480fc9f596abc9b0fd7ba50 (diff) | |
download | jsonschema-f62a9aeaba6a0d3559d0f061b6c9daf0e1266768.tar.gz |
Move continue-on-error to build step.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e83d19..5bc0c6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,6 @@ name: CIFuzz on: [pull_request] jobs: Fuzzing: - continue-on-error: true runs-on: ubuntu-latest steps: - name: Build Fuzzers @@ -11,6 +10,7 @@ jobs: with: oss-fuzz-project-name: 'jsonschema' dry-run: false + continue-on-error: true - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: |