gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/job.rb
2016-07-05 14:05:07 +02:00

14 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