Skip to content

Bump werkzeug from 3.0.6 to 3.1.6 #36

Bump werkzeug from 3.0.6 to 3.1.6

Bump werkzeug from 3.0.6 to 3.1.6 #36

Workflow file for this run

name: Format Python Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
# Install dependencies
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black
# Run Black (check mode)
- name: Run Black
run: |
black --check scripts