Initialisation of a the basic file #2

Merged
Philipp merged 3 commits from philipp-patch-1 into main 2023-11-24 22:29:56 +01:00
Showing only changes of commit 49ab01f89e - Show all commits

View File

@ -0,0 +1,18 @@
name: Auto Maintenance Cycle
on:
push:
workflow_dispatch:
jobs:
pre-commit-lint:
name: pre-commit Linting
runs-on: pi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: pip install pre-commit
shell: bash
- name: Pre Commit
run: SKIP=no-commit-to-branch pre-commit run -a
shell: bash