Skip to content

Remove test for 3.7 & 3.8 and add up to 3.14 #209

Remove test for 3.7 & 3.8 and add up to 3.14

Remove test for 3.7 & 3.8 and add up to 3.14 #209

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: "3.9"
- python: "3.13"
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Test
run: tox -e py