Skip to content

added Python 3.12 to testing matrix in GitHub Actions #147

added Python 3.12 to testing matrix in GitHub Actions

added Python 3.12 to testing matrix in GitHub Actions #147

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
# use Ubuntu 20.04 for Python 3.6
exclude:
- os: "ubuntu-latest"
python-version: "3.6"
include:
- os: "ubuntu-20.04"
python-version: "3.6"
runs-on: ${{ matrix.os }}
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 dependencies
run: |
python -m pip install --upgrade pip
# there are currently no dependencies
# pip install -r requirements.txt
- name: Install flake8
run: pip install flake8
- name: Lint with flake8
run: |
# stop the build if flake reports any issues
flake8 . --statistics --show-source
- name: Install pytest
run: pip install pytest pytest-timeout
- name: Test with pytest
run: pytest --run-integration-tests