mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
22 lines
330 B
YAML
22 lines
330 B
YAML
|
---
|
||
|
# 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
|