This PR prepares the v1.0.0 release of csxtools. #53
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: 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 }} |