Skip to content

feat(deps): bump werkzeug from 2.2.3 to 2.3.6 #1366

feat(deps): bump werkzeug from 2.2.3 to 2.3.6

feat(deps): bump werkzeug from 2.2.3 to 2.3.6 #1366

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- main
- gh-pages
pull_request:
jobs:
call-workflow:
uses: radiorabe/actions/.github/workflows/test-pre-commit.yaml@main
with:
requirements: black isort flake8
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x', '3.9' ]
name: Test python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements-dev.txt
- run: pytest --cov-fail-under=100