We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c73a423 commit 17c9d62Copy full SHA for 17c9d62
1 file changed
.github/workflows/setup_test.yml
@@ -0,0 +1,25 @@
1
+# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2
+
3
+name: Run tests
4
5
+on: [ push, pull_request ]
6
7
+jobs:
8
+ Test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: [3.6, 3.7, 3.8, 3.9]
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Install tox
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install tox
23
+ - name: Test with tox
24
25
+ tox
0 commit comments