yamllint/.github/workflows/lint.yml
Ilir Bekteshi 76fdac3839
Use yamllint github format to set file annotations on errors & warnings (#12)
* Use github format output

* Add few tests

* Config yamllint
2020-10-22 12:23:39 +02:00

26 lines
594 B
YAML

name: Test Action
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: lint with config
uses: ./
with:
file_or_dir: test
config_data: |
extends: default
ignore: nok.yaml
rules:
new-line-at-end-of-file:
level: warning
trailing-spaces:
level: warning
- name: lint all (but pass)
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true