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