mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-07 19:08:30 +03:00
18 lines
380 B
YAML
18 lines
380 B
YAML
name: Ruff Formatting & Linting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ruff:
|
|
name: Run Ruff Checks
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Ruff (Lint & Format Check)
|
|
uses: astral-sh/ruff-action@v1
|
|
with:
|
|
args: "check . --output-format=concise && ruff format --check ."
|