Skip to content

build(deps): bump werkzeug from 1.0.0 to 2.3.8 #39

build(deps): bump werkzeug from 1.0.0 to 2.3.8

build(deps): bump werkzeug from 1.0.0 to 2.3.8 #39

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- "**"
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m venv env
source env/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e .
- name: Test
run: |
source env/bin/activate
lando test
pytest