2020-05-24 21:48:15 +00:00
|
|
|
name: syntax-checking
|
|
|
|
|
2020-05-25 12:02:44 +00:00
|
|
|
on: [push, pull_request]
|
2020-05-24 21:48:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-05-25 11:52:12 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Yamllint
|
|
|
|
uses: karancode/yamllint-github-action@master
|
|
|
|
with:
|
|
|
|
yamllint_config_filepath: .yamllint
|
|
|
|
yamllint_strict: false
|
|
|
|
yamllint_comment: true
|