From 26bef8cb5b4b679bda7a6a59d446ce1e20c86471 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 24 May 2020 23:48:15 +0200 Subject: [PATCH] Add action for syntax checking --- .github/workflows/syntax-checking.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/syntax-checking.yml diff --git a/.github/workflows/syntax-checking.yml b/.github/workflows/syntax-checking.yml new file mode 100644 index 00000000000..ec35b111d0c --- /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