Skip to content

Bump ruff from 0.7.4 to 0.8.0 #538

Bump ruff from 0.7.4 to 0.8.0

Bump ruff from 0.7.4 to 0.8.0 #538

Workflow file for this run

name: Check code formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 13 * * 1" # run every Monday at 13:00 UTC
jobs:
format:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip list
- name: ruff check
run: |
ruff check .
- name: ruff format
run: |
ruff format .