Files
template-git/.gitea/workflows/lint.yaml
Philipp Horstenkamp a0f0dbd333
Some checks failed
Lint / pre-commit Linting (push) Failing after 2m7s
Update .gitea/workflows/lint.yaml
2025-07-13 21:54:48 +02:00

19 lines
342 B
YAML

name: Lint
on:
push:
workflow_dispatch:
jobs:
pre-commit-lint:
name: pre-commit Linting
runs-on: pi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install pre-commit
shell: bash
- name: Pre Commit
run: SKIP=no-commit-to-branch pre-commit run -a
shell: bash