blob: 261791759c2e84a3158c02aedc4179e14960480f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|