Skip to content

Yamllint

Yamllint #9

Workflow file for this run

---
name: yamllint
run-name: Yamllint
on:
pull_request:
branches:
- "main"
paths:
- "**/*.yaml"
- "**/*.yml"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
skip_duplicate_actions:
name: Skip Duplicate Actions
runs-on: ubuntu-latest
steps:
- uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cancel_others: true
concurrent_skipping: never
yamllint:
name: Yamllint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Call Dagger Function
uses: dagger/[email protected]
with:
args: check --source=. stderr
module: github.com/softwaredevelop/daggerverse/yamllint@main
verb: call
version: "latest"