Skip to content

📝 (testing.md): add documentation for testing WebSocket actions and c… #4

📝 (testing.md): add documentation for testing WebSocket actions and c…

📝 (testing.md): add documentation for testing WebSocket actions and c… #4

Workflow file for this run

name: Test Coverage
on:
push:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python 3.13
run: uv python install 3.13
- name: Install dependencies
run: uv sync
- name: Run tests with coverage
run: uv run pytest --cov=src --cov-report=xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}