From f7becbe7e9124247d74afc4e786dd60b9cdc7a73 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 7 Oct 2020 00:57:05 +0100 Subject: [PATCH] Add .circleci/config.yml --- .circleci/config.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..328e3bb --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +version: 2.1 + +orbs: + python: circleci/python@0.2.1 + +jobs: + build-and-test: + executor: python/default + steps: + - checkout + - python/load-cache + - python/install-deps + - python/save-cache + - run: + command: ./runtests.py + name: Test + +workflows: + main: + jobs: + - build-and-test