mirror of
https://github.com/coredns/coredns.git
synced 2026-04-05 11:45:33 -04:00
20 lines
543 B
YAML
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"
|