From c6dbb909cc6f2c77b8639426bf31481ddeaed4b4 Mon Sep 17 00:00:00 2001 From: Jonas Schwartz Date: Mon, 14 Jan 2019 21:26:38 +0100 Subject: [PATCH] Add test --- .circleci/config.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76a54dcb..3ae70df0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,10 @@ version: 2 jobs: + test: + steps: + - checkout + - run: docker build -f web.Dockerfile . deploy: docker: - image: joscio/cloud2-build:v0.1.0 @@ -29,8 +33,10 @@ workflows: version: 2 deploy: jobs: - - deploy - #- deploy: - # filters: - # branches: - # only: master + - test + - deploy: + requires: + - test + filters: + branches: + only: master