build(deps): bump prefix-dev/setup-pixi from 0.9.2 to 0.9.3 in the actions group #369
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: CI Python | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| permissions: | |
| contents: read | |
| env: | |
| PIXI_COLOR: always | |
| jobs: | |
| build_and_test: | |
| name: Python project - ${{ matrix.python-environment }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-environment: ['py310', 'py311', 'py312', 'py313'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: prefix-dev/setup-pixi@v0.9.3 | |
| with: | |
| environments: ${{ matrix.python-environment }} | |
| - run: pixi run -e ${{ matrix.python-environment }} test | |
| benchmarks: | |
| name: Python benchmarks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: prefix-dev/setup-pixi@v0.9.3 | |
| with: | |
| environments: py-phylo2vec | |
| - run: pixi run -e py-phylo2vec benchmark |