From df8eaaf67fe22a4499b3883b6d87ad304d4d355e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 10 Aug 2026 17:04:29 +0200 Subject: [PATCH] CI: run integration tests with different runners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Run integration tests with different runner variants to make sure that The Hadolint action works across different GitHub Actions platforms. related-to: hadolint/hadolint-action#100 Signed-off-by: Moritz Röhrich --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a5f201..86afa8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,9 +56,15 @@ jobs: integration-tests: name: Integration Tests - runs-on: ubuntu-24.04 needs: - build-test + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-24.04 + - ubuntu-24.04-arm + steps: - uses: actions/checkout@v5