mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-30 04:45:35 +02:00
23 lines
367 B
YAML
23 lines
367 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
ruff:
|
|
name: Ruff
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run Ruff lint
|
|
uses: astral-sh/ruff-action@v3
|
|
with:
|
|
args: check
|
|
|
|
- name: Run Ruff format check
|
|
uses: astral-sh/ruff-action@v3
|
|
with:
|
|
args: format --check |