Skip to content

Removed testing for Python 3.7 and 3.8; added for Python 3.13; update… #61

Removed testing for Python 3.7 and 3.8; added for Python 3.13; update…

Removed testing for Python 3.7 and 3.8; added for Python 3.13; update… #61

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python: [3.6.7, 3.13.0]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py