17 lines
314 B
YAML
17 lines
314 B
YAML
steps:
|
|
go-test:
|
|
image: golang
|
|
commands:
|
|
- make -C polyculeconnect test
|
|
environment:
|
|
- GOPROXY=http://goproxy.home:3000
|
|
|
|
go-build:
|
|
image: golang
|
|
commands:
|
|
- make -C polyculeconnect build
|
|
environment:
|
|
- GOPROXY=http://goproxy.home:3000
|
|
|
|
when:
|
|
event: [push, tag]
|