Skip to content

Workflow file for this run

name: Test matrix includes
on:
push:
branches:
- "matrix-includes"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [main]
merge_group:
jobs:
check-downstream-compiles:
runs-on: ubuntu-latest
strategy:
matrix:
downstream: [zk-light-clients, loam]
include:
- light-client: aptos
downstream: zk-light-clients
- light-client: ethereum
downstream: zk-light-clients
steps:
- uses: actions/checkout@v4
- if: matrix.downstream == "zk-light-clients"

Check failure on line 25 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Test matrix includes

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 25, Col: 13): Unexpected symbol: '"zk-light-clients"'. Located at position 22 within expression: matrix.downstream == "zk-light-clients" .github/workflows/ci.yml (Line: 28, Col: 13): Unexpected symbol: '"zk-light-clients"'. Located at position 22 within expression: matrix.downstream != "zk-light-clients"
run: |
echo "${{ matrix.light-client }}"
- if: matrix.downstream != "zk-light-clients"
run: |
echo "${{ matrix.downstream }}"