chore(deps): bump cachetools from 7.0.2 to 7.0.5 #273
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
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - "**.py" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited, labeled, unlabeled] | |
| permissions: | |
| contents: read | |
| name: pytest-with-coverage | |
| jobs: | |
| uv-pytest-coverage: | |
| name: python | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0 | |
| - name: Install the project | |
| run: uv sync --frozen --all-groups | |
| - name: Run pytest tests using coverage | |
| run: MCP_SERVER_TRANSPORT=streamable-http uv run --group test coverage run -m pytest tests/ | |
| - name: Generate coverage report | |
| run: uv run coverage report -m |