mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +00:00
22 lines
331 B
YAML
22 lines
331 B
YAML
---
|
|
# https://github.com/ibiqlik/action-yamllint
|
|
name: YAML Lint
|
|
|
|
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
|