Skip to content

implement automatic releases and testing #2

implement automatic releases and testing

implement automatic releases and testing #2

Workflow file for this run

---
# 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
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