We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8c47a commit 81c1c8eCopy full SHA for 81c1c8e
.github/workflows/test.yaml
@@ -0,0 +1,26 @@
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-version: [3.6, 3.7, 3.8, 3.9]
12
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 dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install flake8 pytest
23
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24
+ - name: Test with pytest
25
26
+ pytest
0 commit comments