Skip to content

Ruff check in CI. Format the entire code with Ruff. #12

Ruff check in CI. Format the entire code with Ruff.

Ruff check in CI. Format the entire code with Ruff. #12

Workflow file for this run

name: Ruff
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint with ruff
run: |
ruff check .
- name: Format with ruff
run: |
ruff format --check .