Skip to content

build: add python 3.11 and python 3.12 #4

build: add python 3.11 and python 3.12

build: add python 3.11 and python 3.12 #4

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -r tests/requirements.txt
- name: Tests
# nose is not python 3.10 compliant
if: ${{ matrix.python-version != 3.10 }}
run: |
make test