gitlab-ce/lib/gitlab/ci/config/node/job.rb

15 lines
233 B
Ruby

module Gitlab
module Ci
class Config
module Node
##
# Entry that represents a concrete CI/CD job.
#
class Job < Entry
include Configurable
end
end
end
end
end