Skip to content

Commit 2368f23

Browse files
committed
Add GitHub Actions package build workflow that invokes 'tox'
1 parent 2c19b98 commit 2368f23

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/python-tox.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
on: [pull_request, push]
2+
jobs:
3+
build:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- uses: actions/checkout@v2
7+
- uses: actions/setup-python@v2
8+
- run: pip install tox
9+
- run: tox

0 commit comments

Comments
 (0)