2020-09-20 09:15:09 +00:00
|
|
|
name: Test defaults.yml
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- 'defaults.yml'
|
2020-11-23 20:48:50 +00:00
|
|
|
- 'defaults-*.yml'
|
2020-09-20 09:15:09 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Lint defaults.yml
|
2020-11-08 18:34:30 +00:00
|
|
|
uses: ibiqlik/action-yamllint@v3.0.0
|
2020-09-20 09:15:09 +00:00
|
|
|
with:
|
|
|
|
file_or_dir: defaults.yml
|
|
|
|
config_file: .github/workflows/config/yml-lint.yml
|
|
|
|
strict: true
|
2020-11-23 20:48:50 +00:00
|
|
|
|
|
|
|
- name: Lint defaults-fr.yml
|
|
|
|
uses: ibiqlik/action-yamllint@v3.0.0
|
|
|
|
with:
|
|
|
|
file_or_dir: defaults-fr.yml
|
|
|
|
config_file: .github/workflows/config/yml-lint.yml
|
|
|
|
strict: true
|