A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
atcr.io
docker
container
atproto
go
1when:
2 - event: ["push"]
3 branch: ["*"]
4 - event: ["pull_request"]
5 branch: ["main"]
6
7engine: kubernetes
8image: golang:1.24-bookworm
9architecture: arm64
10
11steps:
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 ./...