mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-24 14:30:48 +01:00
20 lines
326 B
YAML
20 lines
326 B
YAML
---
|
|
name: Lint
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: Linters
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- run: yamllint --strict -- $(git ls-files '*.yaml' '*.yml')
|