atproto utils for zig zat.dev
atproto sdk zig
26
fork

Configure Feed

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

ci: download zig 0.16 binary (nixpkgs only has 0.15.2)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+9 -3
+9 -3
.tangled/workflows/ci.yml
··· 6 6 7 7 dependencies: 8 8 nixpkgs: 9 - - zig 9 + - curl 10 + - xz 10 11 11 12 steps: 13 + - name: install zig 0.16 14 + command: | 15 + curl -sSL https://ziglang.org/builds/zig-linux-x86_64-0.16.0-dev.3059+42e33db9d.tar.xz | tar -xJ -C /tangled/workspace 16 + mv /tangled/workspace/zig-linux-x86_64-0.16.0-dev.3059+42e33db9d /tangled/workspace/.zig 17 + 12 18 - name: check formatting 13 19 command: | 14 - zig fmt --check . 20 + /tangled/workspace/.zig/zig fmt --check . 15 21 16 22 - name: run tests 17 23 command: | 18 - zig build test --summary all 24 + /tangled/workspace/.zig/zig build test --summary all