We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fab2e8 commit bc92059Copy full SHA for bc92059
1 file changed
.github/workflows/CI.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python-version: [2.7, 3.6, 3.7, 3.8]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v1
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Install dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install -r requirements-dev.txt
23
+ - name: Run unit tests
24
25
+ python utest/run.py
26
+ - name: Run acceptance tests
27
28
+ python atest/run.py
0 commit comments