Skip to content

update workflow stuff #373

update workflow stuff

update workflow stuff #373

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- "main"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: pytest ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ github.token }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run tests
shell: bash
run: |
uv sync
uv run pytest