From 61171cc9eb0561a39f75f13b12e0e6811572825e Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 19 Aug 2020 13:12:17 -0700 Subject: [PATCH] Add tests to drone --- .drone.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index d56c3bf..bdcd92f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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