From 87cfb0a7ae42e5c7be72ab40d4f321019e81ed0b Mon Sep 17 00:00:00 2001
From: "Gervaise H. Henry" <gervaise.henry@utsouthwestern.edu>
Date: Tue, 29 Dec 2020 21:48:39 -0600
Subject: [PATCH] Add code climate ci check

---
 .gitlab-ci.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 04a7a53..8646857 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,13 +12,29 @@ variables:
   refHuVersion: "38.p12.v31"
   refERCCVersion: "92"
 
+include:
+  - template: Code-Quality.gitlab-ci.yml
+
 stages:
+  - test
   - unit
   - aggregation
   - reference
   - integration
   - consistency
 
+code_quality:
+  stage: test
+  artifacts:
+    paths: [gl-code-quality-report.json]
+    expire_in: 1 year
+
+code_quality_html:
+  stage: test
+  variables:
+    REPORT_FORMAT: html
+  artifacts:
+    paths: [gl-code-quality-report.html]
 
 getBag:
   stage: unit
-- 
GitLab