mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-10 16:01:23 +00:00
Merge pull request #13 from danielkubat/ci-yamllint
YAML linter CI - Merging with main as IPA server deployment playbooks are working without error.
This commit is contained in:
commit
2c8a3e9481
21
.github/workflows/yamllint.yml
vendored
Normal file
21
.github/workflows/yamllint.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
# https://github.com/ibiqlik/action-yamllint
|
||||||
|
name: YAMLlint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '**.yml'
|
||||||
|
- '**.yaml'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
yamllint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 1
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Git checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: yamllint
|
||||||
|
uses: ibiqlik/action-yamllint@v3
|
Loading…
Reference in New Issue
Block a user