Skip to content

Bump werkzeug from 3.1.1 to 3.1.5 #113

Bump werkzeug from 3.1.1 to 3.1.5

Bump werkzeug from 3.1.1 to 3.1.5 #113

Workflow file for this run

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