mirror of
https://github.com/emersion/go-msgauth
synced 2026-07-03 17:48:34 +00:00
20 lines
448 B
YAML
20 lines
448 B
YAML
image: alpine/edge
|
|
packages:
|
|
- go
|
|
# Required by codecov
|
|
- bash
|
|
- findutils
|
|
sources:
|
|
- https://github.com/emersion/go-msgauth
|
|
tasks:
|
|
- build: |
|
|
cd go-msgauth
|
|
go build -v ./...
|
|
- test: |
|
|
cd go-msgauth
|
|
go test -coverprofile=coverage.txt -covermode=atomic ./...
|
|
- upload-coverage: |
|
|
cd go-msgauth
|
|
export CODECOV_TOKEN=2db2b6a5-8f23-4e1e-a6ac-6e8db41eb3d1
|
|
curl -s https://codecov.io/bash | bash
|