Skip to content

Remove Python 3.8 from CI and add 3.12 #3

Remove Python 3.8 from CI and add 3.12

Remove Python 3.8 from CI and add 3.12 #3

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: "pip"
cache-dependency-path: pyproject.toml
- name: test
run: make test INSTALL_EXTRA=test