build: add pre-commit tooling and base CI #2

Merged
marc merged 2 commits from build/add-precommit-and-ci-tooling into main 2024-11-09 02:52:51 +00:00
Showing only changes of commit 014ce605da - Show all commits

View file

@ -0,0 +1,12 @@
name: Push
on: [push]
jobs:
static-analysis:
runs-on: runner-latest
steps:
- uses: actions/checkout@v4
- name: Validate Yaml
run: pipx run pre-commit run check-yaml -a
- name: Validate shell scripts
run: pipx run pre-commit run shellcheck -a