Skip to content

Bump werkzeug from 3.0.4 to 3.0.6 #81

Bump werkzeug from 3.0.4 to 3.0.6

Bump werkzeug from 3.0.4 to 3.0.6 #81

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pipenv"
- name: Install Pipenv
run: pip install pipenv
- name: Verify Pipfile.lock is in sync
run: pipenv verify
- name: Install dependencies
run: pipenv install --dev
- name: Run Unit Tests
run: pipenv run pytest -v