Skip to content

Update active python versions #357

Update active python versions

Update active python versions #357

Workflow file for this run

name: Unit Tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy3.11']
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: pip install tox
- name: Run Tox Flask==3.x
run: tox -e py
- name: Run Tox Flask==2.1
run: tox -e flask21
- name: Run Tox Flask==2.x
run: tox -e flask2x