feat(cozystack): disable KVM nested virtualization in Talos skills (C… #20
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| jq: | |
| name: jq lint manifests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate marketplace.json | |
| run: jq . .claude-plugin/marketplace.json > /dev/null | |
| - name: Validate every plugin.json | |
| run: | | |
| set -euo pipefail | |
| fail=0 | |
| while IFS= read -r f; do | |
| if ! jq . "$f" > /dev/null; then | |
| echo "FAIL: $f is not valid JSON" >&2 | |
| fail=1 | |
| fi | |
| done < <(find plugins -name plugin.json -type f) | |
| exit "$fail" | |
| cross-refs: | |
| name: cross-reference validator | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: tools/check-refs.sh | |
| run: bash tools/check-refs.sh |