Skip to content

change minimum version to 3.13 #38

change minimum version to 3.13

change minimum version to 3.13 #38

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v7
with:
python-version: "${{ matrix.python-version }}"
- name: Install the project
run: uv sync --frozen --all-extras --dev
- name: Run tests
run: uv run python -m unittest