You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wercker.yml 235B

123456789101112131415
  1. box: golang
  2. build:
  3. steps:
  4. - setup-go-workspace
  5. - script:
  6. name: go get
  7. code: |
  8. go version
  9. go get -t ./...
  10. - script:
  11. name: go test
  12. code: |
  13. go test -race ./...