Skip to content

Update supported Python versions in documentation #1083

Update supported Python versions in documentation

Update supported Python versions in documentation #1083

name: QualityChecks
on:
push:
pull_request:
branches:
- main
jobs:
check-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
fail-fast: false
name: Python-${{ matrix.python-version }}
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.6"
#----------------------------------------------
# install
#----------------------------------------------
- name: Install dependencies
run: UV_PYTHON=python${{ matrix.python-version }} make sync
#----------------------------------------------
# test
#----------------------------------------------
- name: Run tests
run: UV_PYTHON=python${{ matrix.python-version }} make test