Add drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Rob Watson 2021-12-12 13:09:21 +01:00
parent 545ac72faa
commit b2b5736e5e

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 ./...