2020-09-20 09:15:09 +00:00
|
|
|
name: Test defaults.yml
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-08-16 09:11:05 +00:00
|
|
|
- main
|
2020-09-20 09:15:09 +00:00
|
|
|
paths:
|
|
|
|
- 'defaults.yml'
|
2020-11-23 20:48:50 +00:00
|
|
|
- 'defaults-*.yml'
|
2020-09-20 09:15:09 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2022-08-16 09:11:05 +00:00
|
|
|
- main
|
2020-09-20 09:15:09 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Lint defaults.yml
|
2021-10-19 12:35:14 +00:00
|
|
|
uses: ibiqlik/action-yamllint@v3.1.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
|
2021-10-19 12:35:14 +00:00
|
|
|
uses: ibiqlik/action-yamllint@v3.1.0
|
2020-11-23 20:48:50 +00:00
|
|
|
with:
|
|
|
|
file_or_dir: defaults-fr.yml
|
|
|
|
config_file: .github/workflows/config/yml-lint.yml
|
|
|
|
strict: true
|
2021-04-03 10:03:52 +00:00
|
|
|
|
|
|
|
- name: Validate 'defaults-*.yml' against schema
|
|
|
|
uses: nwisbeta/validate-yaml-schema@v1.0.3
|