Skip to content

chore(v-sweep): delete V-lang VeriSimDB client source #150

chore(v-sweep): delete V-lang VeriSimDB client source

chore(v-sweep): delete V-lang VeriSimDB client source #150

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.0-or-later
# Instant Forge Sync - Triggers propagation to all forges on push/release
name: Instant Sync
on:
push:
branches: [main, master]
release:
types: [published]
permissions:
contents: read
jobs:

Check failure on line 14 in .github/workflows/instant-sync.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/instant-sync.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
dispatch:
runs-on: ubuntu-latest
steps:
- name: Trigger Propagation
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3
with:
token: ${{ secrets.FARM_DISPATCH_TOKEN }}
repository: hyperpolymath/.git-private-farm
event-type: propagate
client-payload: |-
{
"repo": "${{ github.event.repository.name }}",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}",
"forges": ""
}
- name: Confirm
env:
REPO_NAME: ${{ github.event.repository.name }}
run: echo "::notice::Propagation triggered for ${REPO_NAME}"
- name: K9-SVC Validation
run: |
echo "Running K9-SVC contractile validation..."
if [ -f .machine_readable/contractiles/must/Mustfile.a2ml ]; then
echo "✅ Mustfile found - running validation"
# Placeholder for actual K9 validation
echo "K9 validation would run here"
else
echo "❌ Mustfile not found"
exit 1
fi
- name: Contractile Check
run: |
echo "Checking contractile completeness..."
contractiles=("must" "trust" "dust" "lust" "adjust" "intend")
missing=0
for c in "${contractiles[@]}"; do
if [ ! -f ".machine_readable/contractiles/$c/${c^}file.a2ml" ]; then
echo "❌ Missing: $c"
missing=$((missing + 1))
fi
done
if [ $missing -gt 0 ]; then
echo "❌ $missing contractiles missing"
exit 1
fi
echo "✅ All contractiles present"