Skip to content

Bump urllib3 from 2.3.0 to 2.6.0 #29

Bump urllib3 from 2.3.0 to 2.6.0

Bump urllib3 from 2.3.0 to 2.6.0 #29

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: "${{ github.head_ref || github.ref }}-${{ github.workflow }}"
cancel-in-progress: true
jobs:
lint-test:
name: Lint and Test
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.7.1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: make install-dev
- name: Lint Python
run: make lint
- name: Cleanup residue file
run: make clean