Skip to content

fix: Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 direc… #37

fix: Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 direc…

fix: Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 direc… #37

Workflow file for this run

name: Lint with Black
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
pip3 install --no-cache-dir poetry==2.1.4
poetry install --no-interaction --no-ansi --no-root
- name: Check formatting
run: make fmt-check