Skip to content

chore: ruff format all source #1

chore: ruff format all source

chore: ruff format all source #1

Workflow file for this run

name: lint
on:
- push
- workflow_call
jobs:
build:
name: ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: 3.11
cache: true
- name: Install dependencies
run: pdm install -G test
- name: Run Ruff check
run: pdm run ruff check .
- name: Run Ruff format
run: pdm run ruff format .