From 7add5a088fd172844fb523b7decdfee7a4635b49 Mon Sep 17 00:00:00 2001 From: Jochen Haeussler Date: Thu, 29 Feb 2024 10:25:57 +0100 Subject: [PATCH] test: workflow syntax matrix values --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index c00ec3a6cd..ff921a770a 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -88,8 +88,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - run-type: [ '-m', '-j' ] - test-group: [ 'build-*car*', 'build*public*', '', 'arg-overrides-*', 'lookup-yml-*', 'missing-config-*', 'specify-yml-*' ] + runtype: [ '-m', '-j' ] + testgroup: [ build-*car*, build*public*, arg-overrides-*, lookup-yml-*, missing-config-*, specify-yml-* ] image: [ ubuntu-latest ] steps: # - name: Set up JDK 17 @@ -115,4 +115,4 @@ jobs: run: | echo "Scenario: ${{ matrix.scenario }}" echo "Parameters: ${{ matrix.parameters }}" - .integration-scenarios/debian-12-jar-mvn/run.sh -b ${{ matrix.run-type }} -t '${{ matrix.test-group }}' + .integration-scenarios/debian-12-jar-mvn/run.sh -b ${{ matrix.runtype }} -t "'${{ matrix.testgroup }}'"