iter #162
This file contains 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: Python package | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
environment: [cpu] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.19.1 | |
environments: ${{ matrix.environment }} | |
frozen: true | |
- name: Install ragger-duck | |
run: pip install -e --no-deps . | |
shell: pixi run bash -e {0} | |
- name: Run tests | |
run: pixi run -e ${{ matrix.environment }} test-ragger-duck |