LOLBAS/.github/workflows/yaml-linting.yml

34 lines
1011 B
YAML
Raw Normal View History

2021-03-09 15:06:22 +01:00
---
2022-09-11 06:28:17 +02:00
name: YAML Lint and Validation Push Check
2022-09-10 23:17:55 +02:00
on: [push]
2021-03-09 14:16:42 +01:00
jobs:
2021-03-09 14:28:09 +01:00
lintFiles:
2021-03-09 15:06:22 +01:00
runs-on: ubuntu-latest
steps:
2022-09-10 22:42:26 +02:00
- uses: actions/checkout@v3
2022-09-10 23:33:11 +02:00
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
2022-09-10 13:22:41 +02:00
with:
2022-09-10 23:33:11 +02:00
config_file: .github/.yamllint
2022-09-11 06:30:03 +02:00
- name: Validate OSBinaries YAML Schema
uses: cketti/action-pykwalify@v0.3-temp-fix
with:
files: yml/OSBinaries/*.yml
schema: YML-Schema.yml
- name: Validate OSLibraries YAML Schema
uses: cketti/action-pykwalify@v0.3-temp-fix
with:
files: yml/OSLibraries/*.yml
schema: YML-Schema.yml
- name: Validate OSScripts YAML Schema
uses: cketti/action-pykwalify@v0.3-temp-fix
with:
files: yml/OSScripts/*.yml
schema: YML-Schema.yml
- name: Validate OtherMSBinaries YAML Schema
uses: cketti/action-pykwalify@v0.3-temp-fix
with:
files: yml/OtherMSBinaries/*.yml
schema: YML-Schema.yml