Skip to content

Commit

Permalink
GitHub Action to run tox
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jan 3, 2024
1 parent d9a3fa2 commit 4fc9930
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: tox
on: [push, pull_request]
jobs:
tox:
strategy:
fail-fast: false
max-parallel: 6
matrix:
os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install --upgrade pip
- run: pip install tox
- run: tox -e py

0 comments on commit 4fc9930

Please sign in to comment.