Skip to content

Bump urllib3 from 2.0.7 to 2.2.2 #49

Bump urllib3 from 2.0.7 to 2.2.2

Bump urllib3 from 2.0.7 to 2.2.2 #49

Workflow file for this run

name: Lint Code Base
on:
pull_request:
types:
- opened
- closed
- edited
- reopened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run linters
run: tox -e lint