From d277a439dfdd7f63caaffe6318518a50e95c5346 Mon Sep 17 00:00:00 2001 From: Kareem Farid Date: Thu, 4 Apr 2024 23:32:35 +0200 Subject: [PATCH] :') --- .github/workflows/action.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml index d5b51b4..0639f7c 100644 --- a/.github/workflows/action.yaml +++ b/.github/workflows/action.yaml @@ -1,23 +1,23 @@ name: Test IPs on: [push] jobs: - Prepare-Tests-Matrix: + test: runs-on: ubuntu-latest outputs: - test-matrix: ${{steps.set-tests-matrix.outputs.tests-matrix}} + test: ${{ steps.test.outputs.test }} steps: - name: Check out repository code uses: actions/checkout@v4 - name: Set Tests Matrix - id: set-tests-matrix - run: echo "tests-matrix=$(python3 ./.github/scripts/get_tests_matrix.py)" >> "$GITHUB_OUTPUT" + id: test + run: echo "test=$(python3 ./.github/scripts/get_tests_matrix.py)" >> "$GITHUB_OUTPUT" - Test: + Test1: runs-on: ubuntu-latest - needs: [Prepare-Tests-Matrix] + needs: [test] steps: - name: Check out repository code uses: actions/checkout@v4 - name: Print Matrix - run: ${{ needs.Prepare-Tests-Matrix.outputs.tests-matrix }} + run: ${{ needs.test.outputs.test }}