Skip to content

[MAINT] Remove links to outdated documentation #118

[MAINT] Remove links to outdated documentation

[MAINT] Remove links to outdated documentation #118

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- 'master'
- 'rec-*'
- 'dev-*'
jobs:
codecov:
name: Codecov Workflow
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install Dependencies
run: |
pip install -r requirements/release.txt
pip install -e .
- name: Generate Code Coverage Report
run: |
pip install pytest pytest-cov
pytest --cov=./ --cov-report=xml
- name: Upload Report to <codecov.io>
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests