Skip to content

Bump urllib3 from 2.5.0 to 2.6.0 #23

Bump urllib3 from 2.5.0 to 2.6.0

Bump urllib3 from 2.5.0 to 2.6.0 #23

Workflow file for this run

name: check
on:
- push
- pull_request
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Set up poetry
uses: abatilo/[email protected]
with:
poetry-version: "2.1.4"
- name: Install dependencies
run: poetry install --only main,dev
- name: Run linter
run: poetry run poe lint
- name: Run formatter
run: poetry run poe format
- name: Run version check
run: poetry run poe versioncheck
- name: Run license check
run: poetry run poe licensecheck --requirements-paths=pyproject.toml
- name: Install test dependencies
run: poetry install --only main,dev,test
- name: Run tests
run: poetry run poe test --cov-branch --cov-report=xml --junitxml=junit.xml -o junit_family=legacy
- name: Run type checking
run: poetry run poe typecheck