Skip to content

Commit

Permalink
Lint YAML files in a GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Feb 17, 2022
1 parent 567285e commit e29447a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Yaml Lint
on: [push] # yamllint disable-line rule:truthy
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3

0 comments on commit e29447a

Please sign in to comment.