This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
JISQueueing/.drone.yml

31 lines
418 B
YAML

2019-09-05 01:54:21 +07:00
kind: pipeline
name: Build
steps:
- name: Build
image: golang:1.12
2019-09-05 04:09:54 +07:00
volumes:
- name: deps
path: /go
2019-09-05 01:54:21 +07:00
commands:
- go build .
2019-09-05 04:09:54 +07:00
2019-09-05 01:54:21 +07:00
- name: Unit Tests
image: golang:1.12
2019-09-05 04:09:54 +07:00
volumes:
- name: deps
path: /go
2019-09-05 01:54:21 +07:00
commands:
- go test -tag=unit .
2019-09-05 04:09:54 +07:00
2019-09-05 01:54:21 +07:00
- name: Integration Tests
image: golang:1.12
2019-09-05 04:09:54 +07:00
volumes:
- name: deps
path: /go
2019-09-05 01:54:21 +07:00
commands:
- go test -tag=integration .
2019-09-05 04:09:54 +07:00
volumes:
- name: deps
temp: {}