Skip to content

Bump werkzeug from 3.0.3 to 3.0.6 in /flask #191

Bump werkzeug from 3.0.3 to 3.0.6 in /flask

Bump werkzeug from 3.0.3 to 3.0.6 in /flask #191

Workflow file for this run

name: PR Tests
on:
pull_request:
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python 3.11
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: '3.11'
- name: Install dependencies
run: pip install tox
- name: Test with tox [fastapi]
working-directory: ./fastapi
run: tox -e py,flake8,black
- name: Test with tox [flask]
working-directory: ./flask
run: tox -e py,flake8,black
- name: Test with tox [python]
working-directory: ./python
run: tox -e py,flake8,black