Files
hass-oidc-auth/.github/workflows/lint.yaml
2025-08-30 12:50:13 +02:00

25 lines
512 B
YAML

---
name: Lint
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync dependencies
run: scripts/sync
- name: Lint (pylint/ruff lint)
run: scripts/check