Add tests to drone
continuous-integration/drone/push Build is failing Details

This commit is contained in:
IamTheFij 2020-08-19 13:12:17 -07:00
parent a1ba2060bb
commit 61171cc9eb
1 changed files with 17 additions and 1 deletions

View File

@ -1,11 +1,27 @@
---
kind: pipeline
name: test
steps:
- name: build
image: golang:1.12
image: golang:1.15
commands:
- make build
- name: test
image: golang:1.15
commands:
- make test
- name: check
image: python:3-slim
commands:
- apt-get update
- apt-get install -y --no-install-recommends make
- pip install docker-compose
- make check
- name: itest
image: docker
commands:
- make itest
---
kind: pipeline