Skip to content

Commit 817563e

Browse files
committed
Add wercker
1 parent ab5610e commit 817563e

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

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

5+
[![wercker status](https://app.wercker.com/status/a350da4eae6cb28a35687ba41afb565a/s/master "wercker status")](https://app.wercker.com/project/byKey/a350da4eae6cb28a35687ba41afb565a)
6+
57
## Usage
68

79
```go

wercker.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 ./...

0 commit comments

Comments
 (0)