Skip to content

ci: Update tests and add Python 3.13 to workflow (#3) #32

ci: Update tests and add Python 3.13 to workflow (#3)

ci: Update tests and add Python 3.13 to workflow (#3) #32

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.10', 3.11, 3.12, 3.13]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies and run tests
run: uv run python3 -m unittest discover