Bump to v4.4.0.dev8 #1243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Validate Blueprint YAML | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
paths: | |
- "nspanel_blueprint.yaml" | |
pull_request: | |
paths: | |
- "nspanel_blueprint.yaml" | |
workflow_dispatch: | |
jobs: | |
code_scan: | |
name: Validate Blueprint YAML | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: '0' | |
- name: Validate nspanel_blueprint.yaml | |
run: yamllint -c "./.rules/yamllint.yml" nspanel_blueprint.yaml | |
... |