mirror of
https://github.com/Prowlarr/Indexers.git
synced 2026-04-30 13:20:54 +01:00
27 lines
427 B
YAML
27 lines
427 B
YAML
---
|
|
name: Yaml Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: yamllint version
|
|
run: |
|
|
yamllint --version
|
|
- name: yamllint run
|
|
run: |
|
|
for f in `find definitions -type f`
|
|
do
|
|
echo "$f"
|
|
yamllint "$f" --format github
|
|
done
|