Skip to content

Add Python 3.12 to the test matrix #88

Add Python 3.12 to the test matrix

Add Python 3.12 to the test matrix #88

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-20.04, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install .
- name: Test
run: |
python -m unittest discover -v