Skip to content

Bump urllib3 from 2.6.3 to 2.7.0 #161

Bump urllib3 from 2.6.3 to 2.7.0

Bump urllib3 from 2.6.3 to 2.7.0 #161

Workflow file for this run

name: Python Style Checker
permissions:
contents: read
pull-requests: write
on: [push, pull_request]
jobs:
style-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install ruff
- name: Lint with Ruff
run: ruff check .
continue-on-error: true