mirror of
https://github.com/emersion/go-msgauth
synced 2026-07-03 17:48:34 +00:00
18 lines
372 B
YAML
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
|