Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.9", "3.11", "3.12"]
python-version: [py38, py39, py311, py312]

steps:
- uses: actions/checkout@v4

- uses: prefix-dev/[email protected]
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
with:
cache: false
environments: >-
${{ matrix.python-version }}

- name: Run build
run: pixi run build
run: pixi run -e ${{ matrix.python-version }} build

- name: Run tests
run: pixi run test
- name: Run test
run: pixi run -e ${{ matrix.python-version }} test
Loading
Loading