Skip to content

Bump werkzeug from 3.0.1 to 3.0.3 (#371) #620

Bump werkzeug from 3.0.1 to 3.0.3 (#371)

Bump werkzeug from 3.0.1 to 3.0.3 (#371) #620

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
jobs:
tests:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 4
matrix:
platform: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry run python -m pip install tox-gh-actions
poetry install
- name: Test with tox
run: poetry run tox