Skip to content

Commit 72bd128

Browse files
committed
Merge branch 'master' of github.com:GIScience/openrouteservice-py
2 parents 6b9e910 + cfe58c5 commit 72bd128

File tree

2 files changed

+33
-25
lines changed

2 files changed

+33
-25
lines changed

.github/workflows/ci-tests.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
28+
nosetests --with-coverage --cover-erase --cover-package=openrouteservice -v
29+
- name: coveralls
30+
run: |
31+
coveralls
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)