Skip to content

build(deps): bump actions/upload-artifact from 4 to 5 #72

build(deps): bump actions/upload-artifact from 4 to 5

build(deps): bump actions/upload-artifact from 4 to 5 #72

Workflow file for this run

name: Run Tests
on: [push, pull_request]
permissions:
contents: read
checks: write
pull-requests: write
statuses: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run pytest
run: |
pytest --cov=./ --cov-report=xml --junitxml=junit_report.xml -v
- name: Upload coverage report
uses: actions/upload-artifact@v5
if: always()
with:
name: coverage-report
path: |
junit_report.xml
coverage.xml
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: junit_report.xml