Skip to content

Update pip requirement from <24.1,>=21.0 to >=21.0,<24.2 (#253) #298

Update pip requirement from <24.1,>=21.0 to >=21.0,<24.2 (#253)

Update pip requirement from <24.1,>=21.0 to >=21.0,<24.2 (#253) #298

Workflow file for this run

name: "Lint"
on:
push:
pull_request:
permissions:
contents: write
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4.1.1"
- name: "Set up Python"
uses: actions/setup-python@v5.1.0
with:
python-version: "3.12.4"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Format"
run: python3 -m ruff format .
- name: "Check"
run: python3 -m ruff check .
- name: "Auto Commit"
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: 'style fixes by ruff'