wercker.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # This references the default golang container from
  2. # the Docker Hub: https://registry.hub.docker.com/u/library/golang/
  3. # If you want Google's container you would reference google/golang
  4. # Read more about containers on our dev center
  5. # http://devcenter.wercker.com/docs/containers/index.html
  6. box: golang
  7. # This is the build pipeline. Pipelines are the core of wercker
  8. # Read more about pipelines on our dev center
  9. # http://devcenter.wercker.com/docs/pipelines/index.html
  10. # You can also use services such as databases. Read more on our dev center:
  11. # http://devcenter.wercker.com/docs/services/index.html
  12. # services:
  13. # - postgres
  14. # http://devcenter.wercker.com/docs/services/postgresql.html
  15. # - mongo
  16. # http://devcenter.wercker.com/docs/services/mongodb.html
  17. build:
  18. # The steps that will be executed on build
  19. # Steps make up the actions in your pipeline
  20. # Read more about steps on our dev center:
  21. # http://devcenter.wercker.com/docs/steps/index.html
  22. steps:
  23. # Sets the go workspace and places you package
  24. # at the right place in the workspace tree
  25. - setup-go-workspace
  26. # Prints go version
  27. - script:
  28. name: go version
  29. code: |
  30. go version
  31. # Gets the dependencies
  32. - script:
  33. name: go get
  34. code: |
  35. go get
  36. # Build the project
  37. - script:
  38. name: go build
  39. code: |
  40. go build
  41. # Test the project
  42. - script:
  43. name: go test
  44. code: |
  45. go test -v