.drone.yml 205 B

12345678910111213
  1. pipeline:
  2. backend:
  3. image: golang
  4. commands:
  5. - GOPATH=$(pwd)/go
  6. - go get ./...
  7. - go test ./...
  8. - go build
  9. frontend:
  10. image: node:6
  11. commands:
  12. - make frontend