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 6b9e910 + cfe58c5 commit 72bd128Copy full SHA for 72bd128
.github/workflows/ci-tests.yml
@@ -0,0 +1,33 @@
1
+name: tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-20.04]
11
+ python_version: [
12
+ 3.7,
13
+ 3.8,
14
+ 3.9,
15
+ pypy3
16
+ ]
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Python ${{ matrix.python_version }}
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python_version }}
23
+ - name: Install dependencies
24
+ run: |
25
+ pip install -r requirements-dev.txt
26
+ - name: nosetests
27
28
+ nosetests --with-coverage --cover-erase --cover-package=openrouteservice -v
29
+ - name: coveralls
30
31
+ coveralls
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.travis.yml
0 commit comments