Skip to content

Fix workflow YAML syntax error #51

Fix workflow YAML syntax error

Fix workflow YAML syntax error #51

Workflow file for this run

name: Run tests in NSLS-II Conda Environments
on:
push:
branches: [main]
pull_request:
jobs:
# First prepare the matrix
matrix_prep:
uses: ./.github/workflows/_matrix_prep.yml
with:
config_prefix: recent
# Then run tests using that matrix
test-in-conda-env:
needs: matrix_prep
strategy:
max-parallel: 4
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix_prep.outputs.matrix_include) }}
uses: ./.github/workflows/_test-in-conda-env.yml

Check failure on line 24 in .github/workflows/conda-env-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/conda-env-tests.yml

Invalid workflow file

error parsing called workflow ".github/workflows/conda-env-tests.yml" -> "./.github/workflows/_test-in-conda-env.yml" : You have an error in your yaml syntax on line 115
with:
conda_env_name: ${{ matrix.conda_env_name }}
zenodo_id: ${{ matrix.zenodo_id }}
md5_checksum: ${{ matrix.md5_checksum }}
python-version: ${{ matrix.python-version }}