We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be3cdf commit 59e0e19Copy full SHA for 59e0e19
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: Run test
2
+
3
+on:
4
+ push:
5
+ branches: '*'
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions/setup-python@v2
15
+ with:
16
+ python-version: 3.7
17
+ - name: Upgrade setuptools
18
+ run: |
19
+ pip install --upgrade setuptools
20
+ - name: Run tests
21
+ run: python setup.py test
.travis.yml
0 commit comments