Skip to content

Commit

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

0 comments on commit d277a43

Please sign in to comment.