Skip to content

Bump reviewdog/action-actionlint from a1b7ce56be870acfe94b83ce5f6da076aecc6d8c to abd537417cf4991e1ba8e21a67b1119f4f53b8e0 #11

Bump reviewdog/action-actionlint from a1b7ce56be870acfe94b83ce5f6da076aecc6d8c to abd537417cf4991e1ba8e21a67b1119f4f53b8e0

Bump reviewdog/action-actionlint from a1b7ce56be870acfe94b83ce5f6da076aecc6d8c to abd537417cf4991e1ba8e21a67b1119f4f53b8e0 #11

Workflow file for this run

---
# https://yamllint.readthedocs.io/en/stable/integration.html#integration-with-github-actions
name: YAML
on:
pull_request:
paths:
- "**/*.yaml"
- "**/*.yml"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint . --format=github