This commit is contained in:
Edward Firmo
2024-01-11 11:52:39 +01:00
parent ce9d45504c
commit 6bf36ded89
11 changed files with 26 additions and 0 deletions

17
.github/workflows/validate_yamllint.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Validate YAML
on:
push:
pull_request:
#schedule:
# - cron: "0 0 * * *"
workflow_dispatch:
jobs:
code_scan:
name: Validate Blueprint YAML
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4.1.0
- name: Validate YAML
run: yamllint -c "./.rules/yamllint.yml"