build(deps): bump pydantic-settings from 2.14.2 to 2.15.0 #1071
Workflow file for this run
This file contains hidden or 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: "Coverage" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| python-version: 3.14 | |
| - name: Install dependencies | |
| run: uv sync --locked --group coverage | |
| - name: Create .env file | |
| run: uv run python create_env_file.py | |
| - name: Start containers | |
| run: docker compose up -d | |
| - name: Run Tests and Record Coverage | |
| working-directory: unittests | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/src | |
| run: | | |
| uv run coverage run -m pytest | |
| uv run coverage html --omit unittests/* | |
| uv run coverage report --fail-under 43 --omit unittests/* |