You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
381 B
YAML

pipeline:
build:
7 years ago
image: ${IMAGE}
commands:
7 years ago
- go build
unit-test:
image: ${IMAGE}
commands:
- go test ./api
9 years ago
publish:
image: plugins/docker
repo: josebarn/hello-world
tags: [ 1.0.0, 1.0, latest ]
dockerfile: ./docker/Dockerfile
secrets: [ DOCKER_USERNAME, DOCKER_PASSWORD ]
debug: true
7 years ago
matrix:
IMAGE:
- golang:latest