Skip to content

Commit

Permalink
Add wercker
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhu committed Mar 8, 2018
1 parent ab5610e commit 817563e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Golang Configuration tool that support YAML, JSON, TOML, Shell Environment

[![wercker status](https://app.wercker.com/status/a350da4eae6cb28a35687ba41afb565a/s/master "wercker status")](https://app.wercker.com/project/byKey/a350da4eae6cb28a35687ba41afb565a)

## Usage

```go
Expand Down
23 changes: 23 additions & 0 deletions wercker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 ./...

0 comments on commit 817563e

Please sign in to comment.