Skip to content

Bump urllib3 from 2.0.7 to 2.2.2 #9

Bump urllib3 from 2.0.7 to 2.2.2

Bump urllib3 from 2.0.7 to 2.2.2 #9

Workflow file for this run

name: pre-commit
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Create virtualenv
run: |
python -m venv venv
source venv/bin/activate
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit install-hooks
pre-commit run --all-files