From 504d2ec65b0d3a5823789519535ed7eb792153f0 Mon Sep 17 00:00:00 2001 From: lethosor Date: Tue, 30 Jun 2020 00:35:01 -0400 Subject: [PATCH] Stop linter steps from stopping each other --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 829ab1c14..3533bd1ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -105,17 +105,22 @@ jobs: run: | python travis/lint.py - name: Check Authors.rst + if: success() || failure() run: | python travis/authors-rst.py - name: Check for missing documentation + if: success() || failure() run: | python travis/script-docs.py - name: Check Lua syntax + if: success() || failure() run: | python travis/script-syntax.py --ext=lua --cmd="luac5.3 -p" --github-actions - name: Check Ruby syntax + if: success() || failure() run: | python travis/script-syntax.py --ext=rb --cmd="ruby -c" --github-actions + check-pr: runs-on: ubuntu-latest if: github.event_name == 'pull_request'