From 607b6ca69bf6798c8c27bf30c749a7299c967a5c Mon Sep 17 00:00:00 2001 From: Albert Wang Date: Fri, 28 Aug 2020 01:54:27 -0700 Subject: [PATCH] Add .circleci/config.yml --- .circleci/config.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f23481c --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +version: 2.1 + +orbs: + python: circleci/python@0.3.2 + +jobs: + build-and-test: + executor: python/default + steps: + - checkout + - python/load-cache + - run: + command: pip install flake8 + name: Install dependencies + - python/save-cache + - run: + command: flake8 --ignore=E501 + name: Lint + +workflows: + main: + jobs: + - build-and-test