moth/.gitlab-ci.yml

22 lines
288 B
YAML
Raw Normal View History

2021-10-18 18:22:00 -06:00
stages:
- test
- push
test:
image: golang:1.17
only:
refs:
- main
- merge_requests
stage: test
script:
- go test ./...
push:
stage: push
rules:
- if: $CI_COMMIT_TAG
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
script:
- ./ci.sh push