Skip to content

Commit

Permalink
Merge pull request #20 from cclauss/patch-1
Browse files Browse the repository at this point in the history
GitHub Action to run tox
  • Loading branch information
gvalkov authored Sep 29, 2022
2 parents c5b4512 + a4bf370 commit 7299f1c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: tox
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install tox
- run: tox -e py

0 comments on commit 7299f1c

Please sign in to comment.