Update/aus cop hub orbits #240
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: Run Tests with Pytest | |
| on: | |
| pull_request: | |
| env: | |
| PYGSSEARCH_CONDA_ENV: /home/runner/miniconda3/envs/pygssearch | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Set up conda | |
| - name: Set up conda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| activate-environment: pygssearch | |
| miniconda-version: "latest" | |
| environment-file: Conda/pygssearch/environment.yaml | |
| auto-activate: false | |
| conda-remove-defaults: "true" | |
| # Verify conda envs | |
| - name: Verify Conda environment | |
| run: conda info --envs | |
| # Set up pixi | |
| - name: Set up pixi | |
| uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: v0.59.0 | |
| cache: true | |
| # Run pixi tests | |
| - name: Run tests | |
| run: pixi run test-pipeline |