gitlab-org--gitlab-foss/lib/gitlab/ci/config/entry/before_script.rb

14 lines
192 B
Ruby
Raw Normal View History

module Gitlab
module Ci
class Config
module Entry
class BeforeScript < BaseEntry
def leaf?
true
end
end
end
end
end
end