Skip to content

Commit 971a889

Browse files
committed
Add wrecker.yml
1 parent e88d3df commit 971a889

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/bin
22
/pkg
3+
_builds
4+
_projects
5+
_steps

wercker.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
box: golang
2+
dev:
3+
steps:
4+
- script:
5+
name: install gb
6+
code: |
7+
go get github.com/constabulary/gb/...
8+
- internal/watch:
9+
code: |
10+
gb build
11+
./bin/go-codegen src/examples/args
12+
reload: true
13+
build:
14+
steps:
15+
- script:
16+
name: install gb
17+
code: |
18+
go get github.com/constabulary/gb/...
19+
- script:
20+
name: build
21+
code: |
22+
gb build
23+
- script:
24+
name: test
25+
code: |
26+
gb test

0 commit comments

Comments
 (0)