Skip to content

Fix workflow YAML syntax error #52

Fix workflow YAML syntax error

Fix workflow YAML syntax error #52

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
with:
conda_env_name: ${{ matrix.conda_env_name }}
zenodo_id: ${{ matrix.zenodo_id }}
md5_checksum: ${{ matrix.md5_checksum }}
python-version: ${{ matrix.python-version }}