From 6031fdc0a8e8db76c927ef89c29649b20260d7c7 Mon Sep 17 00:00:00 2001 From: Kareem Farid Date: Thu, 4 Apr 2024 23:34:05 +0200 Subject: [PATCH] Rename Job --- .github/workflows/action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml index 0639f7c..c0fce53 100644 --- a/.github/workflows/action.yaml +++ b/.github/workflows/action.yaml @@ -1,10 +1,10 @@ name: Test IPs on: [push] jobs: - test: + Prepare-Test-Matrix: runs-on: ubuntu-latest outputs: - test: ${{ steps.test.outputs.test }} + test: ${{ steps.Prepare-Test-Matrix.outputs.test }} steps: - name: Check out repository code uses: actions/checkout@v4 @@ -14,10 +14,10 @@ jobs: Test1: runs-on: ubuntu-latest - needs: [test] + needs: [Prepare-Test-Matrix] steps: - name: Check out repository code uses: actions/checkout@v4 - name: Print Matrix - run: ${{ needs.test.outputs.test }} + run: ${{ needs.Prepare-Test-Matrix.outputs.test }}