Philipp Horstenkamp df14b016b7
All checks were successful
Lint / pre-commit Linting (push) Successful in 20s
Fixed the name of the lint workflow.
2023-11-25 00:29:16 +01:00

19 lines
360 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@v4
- run: pip install pre-commit
shell: bash
- name: Pre Commit
run: SKIP=no-commit-to-branch pre-commit run -a
shell: bash