From 3ee6fa0ad010a460c03c5fb9d91b96620b92ca35 Mon Sep 17 00:00:00 2001 From: Kevin Hallock Date: Tue, 12 Mar 2019 15:49:16 -0600 Subject: [PATCH] Add workflows section to CircleCI config.yml --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0d9306d..027dd33 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ # version: 2 jobs: - pep8: + lint: docker: - image: circleci/python:3.6.1 @@ -88,3 +88,9 @@ jobs: - store_artifacts: path: test-reports destination: test-reports +workflows: + version: 2 + build_and_lint: + jobs: + - build + - lint