mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-09-03 08:46:57 +00:00
27 lines
410 B
YAML
27 lines
410 B
YAML
when:
|
|
- event: ["push"]
|
|
branch: ["main"]
|
|
- event: ["pull_request"]
|
|
branch: ["main"]
|
|
|
|
engine: "nixery"
|
|
|
|
dependencies:
|
|
nixpkgs:
|
|
- gcc
|
|
- go
|
|
- curl
|
|
|
|
steps:
|
|
- name: Download and Generate
|
|
environment:
|
|
CGO_ENABLED: 1
|
|
command: |
|
|
go mod download
|
|
go generate ./...
|
|
|
|
- name: Run Tests
|
|
environment:
|
|
CGO_ENABLED: 1
|
|
command: |
|
|
go test -cover ./... |