Bump werkzeug from 3.1.1 to 3.1.5 #113
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: Test Suite | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| container: python:3.12 | |
| name: "Run linters and tests" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| - name: Install dependencies | |
| run: uv sync --dev | |
| - name: Run linting | |
| run: uv run ruff check . | |
| - name: Run typechecker | |
| run: uv run ty check | |
| - name: Run tests | |
| run: uv run pytest |