Init quality control tools #1

Merged
Philipp merged 5 commits from philipp-patch-1 into main 2025-07-13 22:14:17 +02:00
Showing only changes of commit f03ae31903 - Show all commits

View File

@@ -0,0 +1,18 @@
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