Skip to content

feat(cozystack): disable KVM nested virtualization in Talos skills (C… #20

feat(cozystack): disable KVM nested virtualization in Talos skills (C…

feat(cozystack): disable KVM nested virtualization in Talos skills (C… #20

Workflow file for this run

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