From 8a45e2015d615eb0856d50ad6739b2b2b15e5285 Mon Sep 17 00:00:00 2001 From: Kareem Farid Date: Mon, 15 Apr 2024 14:18:33 +0200 Subject: [PATCH] Hmm idk --- .github/workflows/action.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml index 4017521..4cddb5b 100644 --- a/.github/workflows/action.yaml +++ b/.github/workflows/action.yaml @@ -28,9 +28,14 @@ jobs: url: ${{ matrix.tests.url }} test-names: ${{ matrix.tests.test-names }} name: ${{ matrix.tests.name }} - - name: Run Test (Separate workflow) - uses: ./.github/workflows/run_test.yaml - with: - url: ${{ matrix.tests.url }} - test-names: ${{ matrix.tests.test-names }} - name: ${{ matrix.tests.name }} + Test2: + strategy: + fail-fast: false + matrix: ${{ fromJSON(needs.Prepare-Tests-Matrix.outputs.test) }} + needs: [Prepare-Tests-Matrix] + name: Run Test (Separate workflow) + uses: ./.github/workflows/run_test.yaml + with: + url: ${{ matrix.tests.url }} + test-names: ${{ matrix.tests.test-names }} + name: ${{ matrix.tests.name }}