Add tests config

This commit is contained in:
Roman Mogylatov 2021-01-25 17:11:34 -05:00
parent dfedead4f0
commit 72f081a91d

17
.github/workflows/tests.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Tests
on: push
jobs:
test-py39:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: pip install tox
- run: tox
env:
TOXENV: py39