8000 Merge branch 'master' into yamllint · goss-org/goss@fb9a811 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ci: add validation with yamllint #5

ci: add validation with yamllint

ci: add validation with yamllint #5

Workflow file for this run

name: Validate YAML
on:
push:
branches:
- master
pull_request:
paths:
- "**/*.ya?ml"
jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate YAML file
run: make lint-yaml
0