Skip to content

Add Python 3.12 support. #29

Add Python 3.12 support.

Add Python 3.12 support. #29

Workflow file for this run

# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Typecheck
run: |
tox -e typecheck
- name: Run tests
run: |
tox -e py
- name: Run integration tests
run: |
tox -e integration
- name: Report results
run: |
tox -e report