diff --git a/.github/workflows/christian-linter.yaml b/.github/workflows/christian-linter.yaml new file mode 100644 index 0000000..ee33bd2 --- /dev/null +++ b/.github/workflows/christian-linter.yaml @@ -0,0 +1,19 @@ +name: 'Christian Linter' +on: + - pull_request + - push +jobs: + christian-linter: + name: 'Christian Linter' + runs-on: ubuntu-latest + steps: + - name: 'Checkout' + uses: actions/checkout@master + - name: 'Yamllint' + uses: karancode/yamllint-github-action@master + with: + yamllint_file_or_dir: '.' + yamllint_strict: false + yamllint_comment: true + env: + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}