session and seat management daemon
3

Configure Feed

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

chore(ci): add tangled spindle workflows for fmt, check, and coverage

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

parzivale (Jul 12, 2026, 8:52 PM +0200) dee6f2d8 96e35d30

+55
+14
.tangled/workflows/check.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + 4 + engine: nixery 5 + 6 + dependencies: 7 + nixpkgs: 8 + - cargo 9 + - linux-pam 10 + - pkg-config 11 + 12 + steps: 13 + - name: cargo check 14 + command: cargo check
+20
.tangled/workflows/coverage.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + 4 + engine: nixery 5 + 6 + dependencies: 7 + nixpkgs: 8 + - cargo 9 + - cargo-llvm-cov 10 + - linux-pam 11 + - pkg-config 12 + - jq 13 + 14 + steps: 15 + - name: coverage 16 + command: | 17 + cargo llvm-cov --json --summary-only --output-path coverage.json 18 + pct=$(jq '.data[0].totals.lines.percent' coverage.json) 19 + printf '{"schemaVersion":1,"label":"coverage","message":"%.1f%%","color":"brightgreen"}' "$pct" > badge.json 20 + cat badge.json
+21
.tangled/workflows/fmt.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + 4 + engine: nixery 5 + 6 + dependencies: 7 + nixpkgs: 8 + - nixfmt-rfc-style 9 + - taplo 10 + - fd 11 + - cargo 12 + - rustfmt 13 + 14 + steps: 15 + - name: nix fmt 16 + command: | 17 + fd -t f -e nix -x nixfmt --check '{}' 18 + fd -t f -e toml -x taplo fmt --check '{}' 19 + 20 + - name: cargo fmt 21 + command: cargo fmt --check