wercker.yml 354 B

1234567891011121314151617181920212223
  1. box: golang
  2. build:
  3. steps:
  4. - setup-go-workspace
  5. # Gets the dependencies
  6. - script:
  7. name: go get
  8. code: |
  9. go get
  10. # Build the project
  11. - script:
  12. name: go build
  13. code: |
  14. go build ./...
  15. # Test the project
  16. - script:
  17. name: go test
  18. code: |
  19. go test ./...