fedilogue/.gitlab-ci.yml

36 lines
533 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
- cd ../fedictl
- go build
- cd ../restapi
- go build
2021-08-10 03:51:07 +00:00
only:
- main
artifacts:
name: "$CI_JOB_NAME"
paths:
- fedilogue/fedilogue
- fedictl/fedictl
- restapi/restapi
2021-08-10 03:51:07 +00:00
test:
stage: test
script:
- cd fedilogue
- go get .
- go test -v
- cd ../fedictl
- go get .
- go test -v
- cd ../restapi
- go get .
- go test -v
2021-08-10 03:51:07 +00:00
only:
- merge_requests