We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b6d55 commit 014320bCopy full SHA for 014320b
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Test
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+
7
+ strategy:
8
+ matrix:
9
+ python-version: [3.7, 3.8, "3.10"]
10
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Python ${{ matrix.python-version }}
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: ${{ matrix.python-version }}
17
+ - name: Install Python ${{ matrix.python-version }} dependencies
18
+ run: |
19
+ python -m pip install --upgrade pip
20
+ pip install .
21
+ - name: Run pytest
22
+ run: pytest
0 commit comments