A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go

loom test

evan.jarrett.net d93b6bbc d5df98bb

verified
Changed files
+46
.tangled
+23
.tangled/workflows/loom-amd64.yml
···
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["*"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: kubernetes 8 + image: golang:1.24-bookworm 9 + architecture: amd64 10 + 11 + steps: 12 + - name: Download and Generate 13 + environment: 14 + CGO_ENABLED: 1 15 + command: | 16 + go mod download 17 + go generate ./... 18 + 19 + - name: Run Tests 20 + environment: 21 + CGO_ENABLED: 1 22 + command: | 23 + go test -cover ./...
+23
.tangled/workflows/loom-arm64.yml
···
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["*"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: kubernetes 8 + image: golang:1.24-bookworm 9 + architecture: arm64 10 + 11 + steps: 12 + - name: Download and Generate 13 + environment: 14 + CGO_ENABLED: 1 15 + command: | 16 + go mod download 17 + go generate ./... 18 + 19 + - name: Run Tests 20 + environment: 21 + CGO_ENABLED: 1 22 + command: | 23 + go test -cover ./...