polycule-connect/.woodpecker/test.yml

18 lines
314 B
YAML
Raw Permalink Normal View History

steps:
go-test:
image: golang
commands:
- make -C polyculeconnect test
2023-10-22 20:13:14 +00:00
environment:
- GOPROXY=http://goproxy.home:3000
go-build:
image: golang
commands:
- make -C polyculeconnect build
2023-10-22 20:13:14 +00:00
environment:
- GOPROXY=http://goproxy.home:3000
when:
event: [push, tag]