From 10c792fc091ba1c9c893bdcad670bc04bebe4ef8 Mon Sep 17 00:00:00 2001 From: Josh Marshall Date: Tue, 30 Mar 2021 14:06:06 +0900 Subject: Adding CircleCI support. --- .circleci/config.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..8c43f85 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,28 @@ +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 + - run: + name: Install CI dependencies + command: pip3 install tox twine + - python/save-cache + - run: + command: flake8 + name: Flake8 / linting + - run: + command: tox + name: Run package tests across all python variants + +workflows: + main: + jobs: + - build-and-test + -- cgit v1.2.1