notify.moe/.drone.yml
2019-11-04 17:21:05 +09:00

31 lines
641 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: golang
environment:
CGO_ENABLED: 0
ARN_ROOT: /drone/src
commands:
- apt-get update
- apt-get -y install nodejs npm make
- go version
- npm install -g typescript
- go mod download
- make tools
- make assets
- make server
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0
- golangci-lint run
- make db
- go test -v -coverprofile=coverage.txt .
- name: coverage
image: plugins/codecov
settings:
token:
from_secret: codecov-token
files:
- coverage.txt