Skip to content

Use upload artifcat while running test #122

Use upload artifcat while running test

Use upload artifcat while running test #122

Workflow file for this run

name: Run Tests for IPs
on: [push]
jobs:
Prepare-IPs-Matrix:
runs-on: ubuntu-latest
outputs:
IPs: ${{ 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: |
python3 ./.github/scripts/get_IPs_matrix.py
echo "IPs=$(python3 ./.github/scripts/get_IPs_matrix.py)" >> "$GITHUB_OUTPUT"
IPs:
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

Check failure on line 22 in .github/workflows/action.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/action.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/action.yaml" -> "./.github/workflows/run_IP.yaml" (source branch with sha:fe45b7c77e80bf6f5320db286bab67db63314354) : the `uses' attribute must be a path, a Docker image, or owner/repo@ref
with:
url: ${{ matrix.IPs.url }}
test-names: "${{ matrix.IPs.test-names }}"
name: ${{ matrix.IPs.name }}
buses: ${{ matrix.IPs.buses }}