Files
dyndns-updater/.github/workflows/lint.yml
T
2026-08-07 10:04:31 +02:00

19 lines
324 B
YAML

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- run: ruff check .
- run: ruff format --check .