Test repo for spindle CI setup via tg
0

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit: spindle hello workflow

author
nandi
date (Jul 25, 2026, 2:50 AM -0700) commit 8b40af8a
+28
+22
.tangled/workflows/hello.yml
··· 1 + # Minimal spindle pipeline — runs on push/PR/manual 2 + when: 3 + - event: ["push", "manual"] 4 + branch: ["main", "master"] 5 + - event: ["pull_request"] 6 + branch: ["main", "master"] 7 + 8 + engine: "nixery" 9 + 10 + dependencies: 11 + nixpkgs: 12 + - hello 13 + - bash 14 + 15 + steps: 16 + - name: "Sanity check" 17 + command: | 18 + set -euxo pipefail 19 + echo "CI is working on $TANGLED_REPO_NAME" 20 + echo "kind=$TANGLED_PIPELINE_KIND sha=${TANGLED_SHA:-n/a}" 21 + hello 22 + uname -a
+6
README.md
··· 1 + # tg-ci-test 2 + 3 + Minimal Tangled repo to exercise spindle CI. 4 + 5 + - Workflow: `.tangled/workflows/hello.yml` 6 + - Spindle: hosted `spindle.tangled.sh`