kvs/.drone.yml
Bartuccio Antoine 33657122f9
All checks were successful
continuous-integration/drone/push Build is passing
btree: add basic in memory b-tree with integers
2019-07-30 17:29:13 +02:00

14 lines
284 B
YAML

pipeline:
build:
image: golang:1.12
group: build
commands:
- go get -v -d ./...
- go build .
test:
image: golang:1.12
group: test
commands:
- go get -v -d ./...
- go test -v ./...