mirror of https://github.com/dirtbags/moth.git
25 lines
400 B
YAML
25 lines
400 B
YAML
stages:
|
|
- test
|
|
- push
|
|
|
|
test:
|
|
stage: test
|
|
|
|
image: golang:1.18
|
|
only:
|
|
refs:
|
|
- main
|
|
- merge_requests
|
|
script:
|
|
- go test -race ./...
|
|
|
|
push:
|
|
stage: push
|
|
rules:
|
|
- if: $CI_COMMIT_TAG
|
|
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
script:
|
|
- mkdir ~/.docker
|
|
- echo "$DOCKER_AUTH_CONFIG" | tee ~/.docker/config.json | md5sum
|
|
- sh build/ci/ci.sh publish
|