Files
contact/vendor/github.com/emersion/go-imap/.build.yml
Bel LaPointe dad1b3042c go mod
2021-12-10 07:19:31 -07:00

18 lines
366 B
YAML

image: alpine/edge
packages:
- go
sources:
- https://github.com/emersion/go-imap
artifacts:
- coverage.html
tasks:
- build: |
cd go-imap
go build -race -v ./...
- test: |
cd go-imap
go test -coverprofile=coverage.txt -covermode=atomic ./...
- coverage: |
cd go-imap
go tool cover -html=coverage.txt -o ~/coverage.html