Skip to content

Bump werkzeug from 3.0.3 to 3.0.6 #50

Bump werkzeug from 3.0.3 to 3.0.6

Bump werkzeug from 3.0.3 to 3.0.6 #50

Workflow file for this run

name: Lint
on:
# Replace pull_request with pull_request_target if you
# plan to use this action with forks, see the Limitations section
pull_request:
branches:
- main
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
checks: write
contents: write
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
# Install your linters here
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.3
- name: Virtualenvs config
run: poetry config virtualenvs.create false
- name: Install Python dependencies
run: poetry install --with dev,docs
- name: Run linters
uses: wearerequired/lint-action@v2
with:
pylint: true