Skip to content

nPYc-Toolbox

nPYc-Toolbox #19

name: nPYc-Toolbox
on:
schedule:
- cron: '0 0 1 * *'
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 .
pip install -r requirements.txt
git clone https://github.com/phenomecentre/npc-standard-project.git --single-branch --depth 1 --branch develop ../npc-standard-project
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