Skip to content

Commit

Permalink
Add yamllint GitHub action
Browse files Browse the repository at this point in the history
Integrate the following yamllint GitHub action as it seems
well maintained. It lints all yaml files in the repo:

https://github.com/marketplace/actions/yaml-lint
  • Loading branch information
bastian-src committed Apr 9, 2024
1 parent 86f2830 commit 4d01104
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/yamllint.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@v3
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3

0 comments on commit 4d01104

Please sign in to comment.