Skip to content

Merge pull request #65 from IMMM-SFA/feature/notebook-mods #277

Merge pull request #65 from IMMM-SFA/feature/notebook-mods

Merge pull request #65 from IMMM-SFA/feature/notebook-mods #277

Workflow file for this run

---
name: build
on: # yamllint disable-line rule:truthy
push:
branches-ignore:
- 'false'
pull_request:
branches-ignore:
- 'false'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9'
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py install
- name: Test and generate coverage report on Linux
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml