Skip to content

Commit

Permalink
Rename Job
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Apr 4, 2024
1 parent d277a43 commit 6031fdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }}

0 comments on commit 6031fdc

Please sign in to comment.