remove upload artifact step #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
name: Python Tests | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Run pytest with coverage and generate report | |
run: poetry run pytest --cov=tests --cov-report=xml tests/ | |
- name: Upload coverage to Cobertura | |
uses: 5monkeys/cobertura-action@master | |
with: | |
path: coverage.xml | |
minimum_coverage: 70 | |
skip_covered: false |