Skip to content

Commit

Permalink
ci(lint) Add yaml linter
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre PÉRONNET <[email protected]>
  • Loading branch information
holyhope committed Mar 28, 2024
1 parent 46ef7b1 commit 98b90b2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ibiqlik/action-yamllint@v3
with:
config_data: |
extends: default
rules:
document-start:
present: false
truthy:
check-keys: false

0 comments on commit 98b90b2

Please sign in to comment.