This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
kind: pipeline
|
|
name: Build
|
|
steps:
|
|
- name: Build
|
|
image: golang:1.12
|
|
commands:
|
|
- go build .
|
|
- name: Unit Tests
|
|
image: golang:1.12
|
|
commands:
|
|
- go test -tag=unit .
|
|
- name: Integration Tests
|
|
image: golang:1.12
|
|
commands:
|
|
- go test -tag=integration .
|