From 0198ee4e94f041929902dd73d579b3068fc87da6 Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 12 Jan 2021 14:44:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20add=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 949ad64..8d458d9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,4 +78,11 @@ jobs: # A basic unit of work in a run CONDUIT_SECRET: 'something-really-secret' FLASK_APP: autoapp.py FLASK_DEBUG: 1 - DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr \ No newline at end of file + DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr + +Workflows: + build-test: + - build + - test: + requires: + - build \ No newline at end of file