Skip to content

update CI python versions #41

update CI python versions

update CI python versions #41

Workflow file for this run

name: QA
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13-dev']
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox for ${{ matrix.python-version }}
run: pip install tox
- name: Run Tox for ${{ matrix.python-version }}
run: tox -e qa