Skip to content

Commit

Permalink
github workflow (tox)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschlatter committed Dec 29, 2023
1 parent 25cc1ee commit cf5e893
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: tox

on:
pull_request:
workflow_dispatch: # you can trigger this workflow manually

jobs:
tox_on_ubuntu:

runs-on: ubuntu-20.04
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: install tox
run: pip install tox
- name: run tox
# Run tox using the version of Python in `PATH`
run: tox -e py

0 comments on commit cf5e893

Please sign in to comment.