diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-12-16 22:26:21 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-16 22:26:21 +0900 |
| commit | fbe5033f80cda70d4e835b7c99748df116d3be4c (patch) | |
| tree | 02c9da391f3269317d467d7267c20211fd4a9000 /.github/workflows/main.yml | |
| parent | 8f8e832767192a6f1ce91f9fef45ae2fad14f853 (diff) | |
| parent | aa6fc8c38e5b3ab5dd30c08ee6e88a0936b465b1 (diff) | |
| download | mruby-fbe5033f80cda70d4e835b7c99748df116d3be4c.tar.gz mruby-fbe5033f80cda70d4e835b7c99748df116d3be4c.zip | |
Merge pull request #5224 from jbampton/lint-yaml
feat(CI): add a GitHub Action to lint the YAML
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c1a7e07e..60414e7dc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,21 +4,20 @@ jobs: Fuzzing: runs-on: ubuntu-latest steps: - - name: Build Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'mruby' - dry-run: false - - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'mruby' - fuzz-seconds: 600 - dry-run: false - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() - with: - name: artifacts - path: ./out/artifacts - + - name: Build Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master + with: + oss-fuzz-project-name: 'mruby' + dry-run: false + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + oss-fuzz-project-name: 'mruby' + fuzz-seconds: 600 + dry-run: false + - name: Upload Crash + uses: actions/upload-artifact@v1 + if: failure() + with: + name: artifacts + path: ./out/artifacts |
