Skip to content

chore(deps): bump fastapi from 0.118.2 to 0.120.0 #78

chore(deps): bump fastapi from 0.118.2 to 0.120.0

chore(deps): bump fastapi from 0.118.2 to 0.120.0 #78

Workflow file for this run

name: Coverage
on:
pull_request:
push:
branches:
- main
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python 3.13
run: uv python install 3.13
- name: Install dependencies
run: |
uv sync --dev
- name: Run tests
run: |
uv run pytest tests/ -v --cov=src --cov=tests --cov-report=xml --cov-fail-under=100
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}