Skip to content

Add badge

Add badge #4

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }} && uv python pin ${{ matrix.python-version }}
- name: Install dependencies
run: uv venv && uv sync
- name: Run tests
run: |
source .venv/bin/activate
uv run pytest --junitxml=junit/report.xml --cov=.
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
with:
report_paths: "junit/report.xml"
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml