Skip to content

CI: Add job for testing Python 3.13 #165

CI: Add job for testing Python 3.13

CI: Add job for testing Python 3.13 #165

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
defaults:
run:
shell: bash -l {0}
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [py37, py38, py39, py311, py312, py313]
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 -e ${{ matrix.python-version }} build
- name: Run test
run: pixi run -e ${{ matrix.python-version }} test