Reviewed-on: #1 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
19 lines
356 B
YAML
19 lines
356 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
auto-update:
|
|
name: pre-commit Lint
|
|
runs-on: python
|
|
env:
|
|
SPECIFIC_BRANCH: chore/update-pre-commit
|
|
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
|