Skip to content

version: release 2.3.0 #304

version: release 2.3.0

version: release 2.3.0 #304

Workflow file for this run

name: Tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
'3.8',
'3.9',
'3.10',
'3.11',
'3.12',
'3.13',
'3.14',
]
include:
- python-version: '3.9'
post-venv: '.venv/bin/pip install "urllib3<2" "requests<=2.30" "types-requests<=2.30"'
name: Python ${{ matrix.python-version }} ${{ matrix.post-venv }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install uv
uses: astral-sh/setup-uv@v7
- run: make venv
- if: ${{ matrix.post-venv }}
run: ${{ matrix.post-venv }}
- run: make test
- run: make check
- run: make format-check