Skip to content

Updated meta info

Updated meta info #25

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
build-images:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9"]
env:
os: ${{ matrix.os }}
python: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -e .[dev]
- name: Execute tests
run: |
pytest --cov=./ --cov-report=xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true