mirror of
https://github.com/LOLBAS-Project/LOLBAS
synced 2024-12-27 07:18:05 +01:00
21 lines
530 B
YAML
21 lines
530 B
YAML
name: Yaml Lint
|
|
on: [push]
|
|
jobs:
|
|
lintDataFiles:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: yaml-lint
|
|
uses: ibiqlik/action-yamllint@v3
|
|
with:
|
|
file_or_dir: yml/*.yml
|
|
config_file: .yamllint.yml
|
|
lintTemplate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: yaml-lint
|
|
uses: ibiqlik/action-yamllint@v3
|
|
with:
|
|
file_or_dir: YML-Template.yml
|
|
config_file: .yamllint.yml |