Files
go-msgauth/.build.yml
T
2022-05-03 08:42:41 +02:00

18 lines
372 B
YAML

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