Skip to content

Bump urllib3 from 2.5.0 to 2.6.0 in /docs #102

Bump urllib3 from 2.5.0 to 2.6.0 in /docs

Bump urllib3 from 2.5.0 to 2.6.0 in /docs #102

Workflow file for this run

name: Lint
on:
- push
- pull_request
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run linting
run: |
ruff check .
ruff format --check