debian-mirror-gitlab/lib/api/lint.rb

25 lines
560 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
module API
class Lint < Grape::API
namespace :ci do
desc 'Validation of .gitlab-ci.yml content'
params do
requires :content, type: String, desc: 'Content of .gitlab-ci.yml'
end
post '/lint' do
2019-02-15 15:39:39 +05:30
error = Gitlab::Ci::YamlProcessor.validation_message(params[:content],
user: current_user)
2016-09-29 09:46:39 +05:30
status 200
if error.blank?
{ status: 'valid', errors: [] }
else
{ status: 'invalid', errors: [error] }
end
end
end
end
end