Skip to content

build(deps): bump pylint from 3.3.9 to 4.0.0 #515

build(deps): bump pylint from 3.3.9 to 4.0.0

build(deps): bump pylint from 3.3.9 to 4.0.0 #515

Workflow file for this run

name: "Formatting"
on:
push:
branches: [main]
pull_request: {}
jobs:
black:
runs-on: ubuntu-latest
strategy:
matrix:
tool: ["black", "isort"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[formatting]
- name: ${{ matrix.tool }} Code Formatter
run: |
${{ matrix.tool }} . --check