13 lines
287 B
YAML
13 lines
287 B
YAML
|
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
|