From 242c3a55e304fd7278ca9c74e4444cd78d3ab05f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20B=C3=A1tyai?= Date: Thu, 18 Feb 2021 19:40:21 +0100 Subject: [PATCH] Always run all checks regardless of the previous job result (#4604) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai daniel.batyai@h-lab.eu --- .github/workflows/gh-actions.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 2833072a0..a3a776238 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -15,12 +15,19 @@ jobs: - run: sudo apt update - run: sudo apt install doxygen vera++ cppcheck pylint python-serial - run: $RUNNER --check-signed-off=gh-actions + if: ${{ always() }} - run: $RUNNER --check-doxygen + if: ${{ always() }} - run: $RUNNER --check-vera + if: ${{ always() }} - run: $RUNNER --check-license + if: ${{ always() }} - run: $RUNNER --check-magic-strings + if: ${{ always() }} - run: $RUNNER --check-pylint + if: ${{ always() }} - run: $RUNNER --check-cppcheck + if: ${{ always() }} Linux_x86-64_Build_Correctness_Debugger_Tests: runs-on: ubuntu-latest