Improve Axis Detector Handling with Flexible tag Support #41
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Tests in NSLS-II Conda Environments | ||
| on: [push, pull_request, workflow_dispatch] | ||
| env: | ||
| BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
| jobs: | ||
| matrix_prep: | ||
| uses: ./.github/workflows/_matrix_prep.yml | ||
| with: | ||
| config_prefix: recent | ||
| test-in-conda-env: | ||
| needs: matrix_prep | ||
| uses: ./.github/workflows/_test-in-conda-env.yml | ||
|
Check failure on line 19 in .github/workflows/conda-env-tests.yml
|
||
| with: | ||
| conda_env_name: ${{ matrix.conda_env_name }} | ||
| zenodo_id: ${{ matrix.zenodo_id }} | ||
| md5_checksum: ${{ matrix.md5_checksum }} | ||
| python-version: ${{ matrix.python-version }} | ||
| strategy: | ||
| max-parallel: 4 | ||
| matrix: | ||
| include: ${{ fromJson(needs.matrix_prep.outputs.matrix_include) }} | ||
| fail-fast: false | ||