We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7ae2e commit fdd3161Copy full SHA for fdd3161
1 file changed
.github/test.yml
@@ -0,0 +1,22 @@
1
+name: Python package
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python: [3.7, 3.8]
12
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - name: Setup Python
16
+ uses: actions/setup-python@v1
17
+ with:
18
+ python-version: ${{ matrix.python }}
19
+ - name: Install Tox and any other packages
20
+ run: pip install -r requirements/test.txt
21
+ - name: Run Tox
22
+ run: tox -e py
0 commit comments