[MAINT] Remove links to outdated documentation #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |