Skip to content

Support 3.13, drop 3.8 #12

Support 3.13, drop 3.8

Support 3.13, drop 3.8 #12

Workflow file for this run

name: Core
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Run tests
run: uv run --python ${{ matrix.python-version }} pytest
- name: Run ruff
run: |
uv run ruff check .
uv run ruff format --check
- name: Run pyright
run: uv run pyright