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.
2 parents bbbcb61 + 73942e0 commit 64dd737Copy full SHA for 64dd737
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+name: Python package
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: [3.5, 3.6]
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v2
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: pip install . coverage codecov
22
+ - name: Test
23
+ run: cd tests && coverage run --source=../dpdata -m unittest && cd .. && coverage combine tests/.coverage && coverage report
24
+ - run: codecov
.travis.yml
0 commit comments