yamllint/.github/workflows/lint.yml

58 lines
1.4 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
2021-08-19 02:52:08 -04:00
- name: Get yamllint version
run: yamllint --version
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-10-07 03:22:08 -04:00
# continue-on-error: true
2021-05-26 02:56:08 -04:00
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)
2021-08-19 02:52:08 -04:00
# continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
2021-08-19 02:52:08 -04:00
format: standard
2021-08-10 13:47:03 -04:00
- id: default-lint-all
name: default lint all (continue on error)
2021-10-07 03:22:08 -04:00
# continue-on-error: true
2021-08-18 09:23:29 -04:00
uses: ./
2021-08-10 13:47:03 -04:00
- id: print-output
2021-08-19 02:52:08 -04:00
if: always()
2021-08-10 13:47:03 -04:00
name: Print output
run: |
echo ${{ steps.lint-with-config.outputs.logfile }}
cat ${{ steps.lint-with-config.outputs.logfile }}
2021-08-19 02:52:08 -04:00
echo ${{ steps.lint-all-continue.outputs.logfile }}
cat ${{ steps.lint-all-continue.outputs.logfile }}