From 667ab89d8d6aea4ac9189a4690cad708db6f5136 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Fri, 6 Dec 2024 13:43:56 -0700 Subject: [PATCH] Include matrix without include keyword --- .github/workflows/test-action.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index f2fff4dc8c8..f172dcaf957 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -77,8 +77,7 @@ jobs: timeout-minutes: ${{ fromJSON(inputs.testrun)['type'] == 'full' && inputs.default-timeout || 360 }} strategy: fail-fast: false - matrix: - include: ${{ fromJSON(inputs.matrix)['linux'] }} + matrix: ${{ fromJSON(inputs.matrix)['linux'] }} env: SALT_TRANSPORT: ${{ matrix.transport }} @@ -318,8 +317,7 @@ jobs: timeout-minutes: ${{ fromJSON(inputs.testrun)['type'] == 'full' && inputs.default-timeout || 360 }} strategy: fail-fast: false - matrix: - include: ${{ fromJSON(inputs.matrix)['macos'] }} + matrix: ${{ fromJSON(inputs.matrix)['macos'] }} env: SALT_TRANSPORT: ${{ matrix.transport }} @@ -552,8 +550,7 @@ jobs: timeout-minutes: ${{ fromJSON(inputs.testrun)['type'] == 'full' && inputs.default-timeout || 360 }} strategy: fail-fast: false - matrix: - include: ${{ fromJSON(inputs.matrix)['windows'] }} + matrix: ${{ fromJSON(inputs.matrix)['windows'] }} env: SALT_TRANSPORT: ${{ matrix.transport }} steps: