Skip to content

Commit fa85b05

Browse files
committed
1 parent 8879cc8 commit fa85b05

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Python Tests
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python: ["3.6", "3.7", "3.8", "3.9"]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Setup Python
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: ${{ matrix.python }}
19+
- name: Install tox and any other packages
20+
run: pip install tox
21+
- name: Run tox
22+
# Run tox using the version of Python in `PATH`
23+
run: tox -e py

0 commit comments

Comments
 (0)