yamllint/.github/workflows/lint.yml

45 lines
1.1 KiB
YAML
Raw Normal View History

name: Test Action
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-08-10 13:47:03 -04:00
- id: lint-with-config
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
2021-08-10 13:47:03 -04:00
- id: lint-all-no-warnings
name: lint all - no warnings (continue on error)
2021-05-26 02:56:08 -04:00
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
no_warnings: true
2021-08-10 13:47:03 -04:00
- id: lint-all-continue
name: lint all (continue on error)
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
2021-08-10 13:47:03 -04:00
- id: print-output
name: Print output
run: |
echo ${{ steps.lint-with-config.outputs.logfile }}
cat ${{ steps.lint-with-config.outputs.logfile }}