Add drone.yml
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

This commit is contained in:
Rob Watson 2021-12-12 13:09:21 +01:00
parent 545ac72faa
commit b2b5736e5e
1 changed files with 13 additions and 0 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: backend
image: golang:1.17
commands:
- cd backend/
- go build ./...
- go vet ./...
- go test -bench=. -benchmem -cover ./...