use release description and version from real generated changelog #131
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: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# all history is needed to crawl it properly | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.9' | |
- 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 |