Skip to content

Rename is-ip to is_ip #112

Rename is-ip to is_ip

Rename is-ip to is_ip #112

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 / Run Tests for IPs

Invalid workflow file

The workflow is not valid. In .github/workflows/action.yaml (Line: 22, Col: 11): Error from called workflow efabless/EF_UVM/.github/workflows/run_IP.yaml@ee1a0fe2facca8686410dbd334d8b664d2d46cb0: (Line: 58, Col: 13, Idx: 1816) - (Line: 58, Col: 14, Idx: 1817): While parsing a tag, did not find expected tag URI.
with:
url: ${{ matrix.IPs.url }}
test-names: "${{ matrix.IPs.test-names }}"
name: ${{ matrix.IPs.name }}
buses: ${{ matrix.IPs.buses }}