From 5affbf9955f1d7935c3265580fa8f9c32140774c Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 7 Jun 2019 14:15:49 -0400
Subject: [PATCH] Start to configure CircleCI for continuous integration

---
 .circleci/config.yml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 .circleci/config.yml

diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..3933d4a
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,27 @@
+# Copyright 2019 PrivateStorage.io, LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+version: 2
+
+jobs:
+  documentation:
+    docker:
+      - image: "circleci/python:3.7"
+    steps:
+      - "checkout"
+
+      - run:
+          name: "Sphinx Documentation Build"
+          command: |
+            sphinx-build docs/source docs/build
-- 
GitLab