Skip to content

Bump werkzeug from 3.0.1 to 3.0.3 (#1595) #1561

Bump werkzeug from 3.0.1 to 3.0.3 (#1595)

Bump werkzeug from 3.0.1 to 3.0.3 (#1595) #1561

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-20.04
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11.7
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: tests
run: poetry run coverage run --source=stanley -m 'pytest' --mypy
- name: codecov
run: poetry run codecov