Skip to content

Use inventories in examples (#51) #72

Use inventories in examples (#51)

Use inventories in examples (#51) #72

Workflow file for this run

name: CI
on: [push]
jobs:
build-os-python:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.12", "3.14"]
steps:
- uses: actions/checkout@v3
- uses: prefix-dev/setup-pixi@28eb668aafebd9dede9d97c4ba1cd9989a4d0004 # v0.9.2
with:
pixi-version: v0.63.2
cache: true
auth-host: prefix.dev
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}
- name: ruff
run: |
pixi run ruff
- name: mypy
if: success() || failure()
run: |
pixi run mypy
- name: Test with pytest
if: success() || failure()
run: |
pixi run coverage