Skip to content

Better names

Better names #81

Workflow file for this run

name: Test IPs
on: [push]
jobs:
Prepare-IPs-Matrix:
runs-on: ubuntu-latest
outputs:
test: ${{ steps.set-IPs-matrix.outputs.IPs }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set IPs Matrix
id: set-IPs-matrix
run: echo "IPs=$(python3 ./.github/scripts/get_tests_matrix_alt.py)" >> "$GITHUB_OUTPUT"
Test2:
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.Prepare-IPs-Matrix.outputs.IPs) }}
needs: [Prepare-IPs-Matrix]
name: ${{ matrix.IPs.name }}
uses: ./.github/workflows/run_IP.yaml
with:
url: ${{ matrix.IPs.url }}
test-names: "${{ matrix.IPs.test-names }}"
name: ${{ matrix.IPs.name }}