Skip to content

Update pip requirement from <24.2,>=24.1.1 to == 24.2 #27

Update pip requirement from <24.2,>=24.1.1 to == 24.2

Update pip requirement from <24.2,>=24.1.1 to == 24.2 #27

Workflow file for this run

name: "Format"
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
ruff:
name: "Format with Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: "Run Ruff formatting check"
run: |
ruff format . --check