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 Sep 22, 2022
1 parent c5b4512 commit e008259
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 docs

0 comments on commit e008259

Please sign in to comment.