Skip to content

Commit

Permalink
\~ Renames
Browse files Browse the repository at this point in the history
\+ Test matrix
  • Loading branch information
kareefardi committed Apr 4, 2024
1 parent f3b7014 commit 2d757d2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
File renamed without changes.
19 changes: 16 additions & 3 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
name: Test IPs
on: [push]
jobs:
Prepare-Test-Matrix:
Prepare-Tests-Matrix:
runs-on: ubuntu-latest
outputs:
test-matrix: ${{steps.set-test-matrix.outputs.tests-matrix}}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set Tests Matrix
id: set-tests-matrix
run: echo "test-matrix=$(python3 ./.github/scripts/get_tests_matrix.py)" >> "$GITHUB_OUTPUT"

Test:
runs-on: ubuntu-latest
needs: [Prepare-Tests-Matrix]
name: IP-${{ matrix.tests.name }} Test ${{ matrix.tests.test}}
strategy:
matrix: ${{ fromJSON(needs.Prepare-Tests-Matrix.outputs.test-matrix) }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set Test Matrix
run: python3 ./.github/scripts/get_test_matrix.py

0 comments on commit 2d757d2

Please sign in to comment.