mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-16 06:32:43 +00:00
27 lines
457 B
YAML
27 lines
457 B
YAML
name: Test defaults.yml
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'defaults.yml'
|
|
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Lint defaults.yml
|
|
uses: ibiqlik/action-yamllint@v2.0.0
|
|
with:
|
|
file_or_dir: defaults.yml
|
|
config_file: .github/workflows/config/yml-lint.yml
|
|
strict: true
|