Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/ci
diff options
context:
space:
mode:
authorKatarzyna Kobierska <kkobierska@gmail.com>2016-08-30 16:38:36 +0300
committerKatarzyna Kobierska <kkobierska@gmail.com>2016-09-07 13:10:49 +0300
commit0d81fd05b905e5fe41fee6bb48214748ccf85e78 (patch)
treeecda31a5ba5559754a1e2cbbd9399fb9e9f22bd9 /lib/ci
parent1a7a900d8e4a4a3a65b33054168fdd86f252b757 (diff)
Code refactor
Diffstat (limited to 'lib/ci')
-rw-r--r--lib/ci/gitlab_ci_yaml_processor.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb
index bdae3205511..e8c86349339 100644
--- a/lib/ci/gitlab_ci_yaml_processor.rb
+++ b/lib/ci/gitlab_ci_yaml_processor.rb
@@ -80,6 +80,7 @@ module Ci
def self.validation_message(content)
return 'Please provide content of .gitlab-ci.yml' if content.blank?
+
begin
Ci::GitlabCiYamlProcessor.new(content)
nil