From 1242b49f8d08f981772937bc487da43fe44e4345 Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 15 Sep 2020 13:33:46 +0530 Subject: [PATCH] Add a CI for building dependencies. --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f513e43 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2.1 + +orbs: + python: circleci/python@1.0.0 + +jobs: + build-and-test: + executor: python/default + steps: + - checkout + - python/install-packages: + pkg-manager: pip + # TODO: Tests + +workflows: + main: + jobs: + - build-and-test