fedilogue/.gitlab-ci.yml

20 lines
246 B
YAML
Raw Normal View History

2021-08-10 03:51:07 +00:00
image: golang:latest
build:
stage: build
script:
- cd fedilogue
- go get .
- go build ./fedilogue
only:
- main
test:
stage: test
script:
- cd fedilogue
- go get .
- go test -v
only:
- merge_requests