summaryrefslogtreecommitdiff
path: root/vendor/github.com/jinzhu/inflection/wercker.yml
blob: 5e6ce981dc3848be7645b488d74ae56c20f9b00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
box: golang

build:
  steps:
    - setup-go-workspace

    # Gets the dependencies
    - script:
        name: go get
        code: |
          go get          

    # Build the project
    - script:
        name: go build
        code: |
          go build ./...          

    # Test the project
    - script:
        name: go test
        code: |
          go test ./...