gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

wercker.yml (354B)


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