try fixing detached head and set fetch-depth to all history #11
Workflow file for this run
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
--- | |
# this file is *not* meant to cover or endorse the use of GitHub Actions, but | |
# rather to help make automated releases for this project | |
name: Unittest Python Package | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test-and-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11' | |
- name: Execute tests | |
run: | | |
python -m pip install -U poetry | |
poetry install | |
python create_report_dirs.py | |
poetry run coverage run -m pytest -v | |
- name: Create coverage report | |
run: | | |
poetry run coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./reports/coverage/coverage.xml | |
flags: unittests | |
fail_ci_if_error: true | |
# path_to_write_report: ./reports/coverage/codecov_report.txt | |
verbose: true |