22 lines
440 B
YAML
22 lines
440 B
YAML
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
jobs:
|
|
include:
|
|
- stage: build
|
|
script: make container-run/all
|
|
# Disabled (Missing postgres db)
|
|
# - stage: test
|
|
# script: make container-run/test/unit
|
|
- stage: test
|
|
script: make container-run/test/unit
|
|
after_script: bash <(curl -s https://codecov.io/bash)
|
|
- stage: deploy
|
|
script: make container-image/push
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change |