diff --git a/.github/workflows/syntax-checking.yml b/.github/workflows/syntax-checking.yml new file mode 100644 index 0000000000..ec35b111d0 --- /dev/null +++ b/.github/workflows/syntax-checking.yml @@ -0,0 +1,18 @@ +name: syntax-checking + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: 'Yamllint' + uses: karancode/yamllint-github-action@master + with: + yamllint_strict: false + yamllint_comment: true