Skip to content

Merge pull request #69 from toabctl/ci #3

Merge pull request #69 from toabctl/ci

Merge pull request #69 from toabctl/ci #3

Workflow file for this run

---
name: testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: |
pip3 install tox
- uses: actions/checkout@v3
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox