.drone.yml 180 B

123456789101112
  1. pipeline:
  2. backend:
  3. image: golang
  4. commands:
  5. - go get ./...
  6. - go test ./...
  7. - go build
  8. frontend:
  9. image: node:6
  10. commands:
  11. - make frontend