18 lines
353 B
YAML
18 lines
353 B
YAML
---
|
|
name: Checking yaml
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: Run yamllint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
- name: Run YAML linter
|
|
uses: bewuethr/yamllint-action@v1
|
|
with:
|
|
config-file: .yamllint.yaml
|
|
...
|