Files
coredns/.github/workflows/yamllint.yml
2026-03-24 00:58:19 -07:00

20 lines
543 B
YAML

name: 'Yamllint GitHub Actions'
on:
- pull_request
permissions: read-all
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: 'Setup uv'
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- name: 'Yamllint'
run: |
uvx --from 'yamllint==1.38.0' yamllint .
echo "yamllint passed"