Skip to content

Bump urllib3 from 2.0.4 to 2.0.7 #22

Bump urllib3 from 2.0.4 to 2.0.7

Bump urllib3 from 2.0.4 to 2.0.7 #22

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Cache Setup
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install .
- name: Lint with ruff
run: |
pip install ruff
ruff .
- name: Lint with black
run: |
pip install black
black --check python/