-
Notifications
You must be signed in to change notification settings - Fork 8
43 lines (40 loc) · 1.24 KB
/
nPYc-test-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This workflow will install Python dependencies, run unit tests and process coverage, and if tagged commit, upload to
# PyPI
name: nPYc-Toolbox
on:
push:
branches: [ master, develop, "/^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/"]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .
git clone https://github.com/phenomecentre/npc-standard-project.git --single-branch --depth 1 --branch master ../npc-standard-project
pip install -r requirements.txt
pip install xlrd
pip install coverage
pip install codecov
pip install wheel
- name: Test
run: |
cd Tests
coverage run -m unittest discover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true