GoAT Site is library that implements Standard.site in Go.
atprotocol standard-site atproto library
1
fork

Configure Feed

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

ci(spindle): format and lint

+29
+16
.tangled/workflows/ci.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + - go 9 + 10 + steps: 11 + - name: Lint code 12 + command: | 13 + go vet -x ./... 14 + - name: Run tests 15 + command: | 16 + go test -v -race ./...
+13
.tangled/workflows/format.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + - go 9 + 10 + steps: 11 + - name: Check formatting 12 + command: | 13 + diff <(gofmt -d .) <(echo -n)