mirror of
https://github.com/LOLBAS-Project/LOLBAS
synced 2024-12-29 00:08:11 +01:00
18 lines
376 B
YAML
18 lines
376 B
YAML
---
|
|
name: YAML Lint with reviewdog
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lintFiles:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run yamllint
|
|
uses: reviewdog/action-yamllint@v1
|
|
with:
|
|
reporter: github-pr-review # Change reporter.
|
|
yamllint_flags: '--config-file .github/.yamllint'
|