Skip to content

Commit e774b38

Browse files
authored
Merge branch 'master' into starts-picking-up-wherestopped
2 parents 8a0ae92 + 8d209b4 commit e774b38

File tree

5 files changed

+793
-28
lines changed

5 files changed

+793
-28
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
name: Python package
4+
5+
on:
6+
push:
7+
branches: [ master ]
8+
pull_request:
9+
branches: [ master ]
10+
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
strategy:
17+
# You can use PyPy versions in python-version. For example, pypy2 and pypy3
18+
matrix:
19+
python-version: [3.6, 3.7, 3.8]
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
# You can test your matrix by printing the current Python version
28+
- name: Display Python version
29+
run: python -c "import sys; print(sys.version)"
30+
#test installation of DLC-core dependencies:
31+
- name: Install dependencies
32+
run: pip install -r requirements.txt

0 commit comments

Comments
 (0)