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 d3c0d24 commit 732b0f5Copy full SHA for 732b0f5
.github/workflows/test.yml
@@ -0,0 +1,35 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ python-version: [3.5, 3.6, 3.7, 3.8]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v1
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ pip install -r requirements.txt
29
30
+ - name: Install itself
31
+ run: python setup.py install
32
33
+ - run: pytest
34
+ env:
35
+ PYTEST_PLUGINS: pytest_github_actions_annotate_failures
0 commit comments