Skip to content

Update supported versions of Python #7

Update supported versions of Python

Update supported versions of Python #7

Workflow file for this run

name: Run test-suite
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
os: [ macos-latest, ubuntu-latest ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install latest version of pip
run: python -m pip install --upgrade pip
- name: Install Tox
run: pip install tox
- name: Run tox
run: tox -epy,flake8