Skip to content

Commit f23d278

Browse files
author
Oleg Gorbik
committed
Merge remote-tracking branch 'origin/master' into custom-return-url
2 parents cdd26ab + 1d55f37 commit f23d278

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Python package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
max-parallel: 3
11+
matrix:
12+
python-version: [3.5, 3.6, 3.7]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v1
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install -r requirements.txt
24+
- name: Run tests
25+
run: |
26+
pip install nose
27+
nosetests tests/*

0 commit comments

Comments
 (0)