yamllint/.github/workflows/lint.yml
2021-05-26 08:56:08 +02:00

34 lines
803 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 - no warnings (continue on error)
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
no_warnings: true
- name: lint all (continue on error)
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true