.drone.yml 310 B

12345678910111213141516171819202122
  1. ---
  2. workspace:
  3. base: /go
  4. path: src/git.lattuga.net/boyska/circolog
  5. pipeline:
  6. build:
  7. image: golang:${GO_VER}
  8. commands:
  9. - go get ./...
  10. - go test
  11. - go build
  12. matrix:
  13. GO_VER:
  14. - 1.5
  15. - 1.6
  16. - 1.7
  17. - 1.8
  18. - 1.9
  19. - 1.10
  20. - latest