From bec2c461d7a6e7362b9e40d9f4a9c8b9f97654fd Mon Sep 17 00:00:00 2001 From: AndreasBrostrom Date: Mon, 29 Jul 2024 10:24:33 +0200 Subject: [PATCH] Run all validations always --- .github/workflows/arma.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/arma.yml b/.github/workflows/arma.yml index a2f60ae7..706f0655 100644 --- a/.github/workflows/arma.yml +++ b/.github/workflows/arma.yml @@ -13,13 +13,17 @@ jobs: - name: Checkout the source code uses: actions/checkout@master - name: Validate SQF + if: always() run: python3 tools/sqf_validator.py - name: Validate Config + if: always() run: python3 tools/config_style_checker.py - name: Validate Stringtables + if: always() run: python3 tools/stringtable_validator.py continue-on-error: true - name: Check Strings + if: always() run: python3 tools/check_strings.py # - name: Check for BOM # uses: arma-actions/bom-check@master