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
3 changed files with 25 additions and 0 deletions

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

10
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,10 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck

3
bootstrap.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
pipx run pre-commit install