gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/job.rb

15 lines
233 B
Ruby
Raw Normal View History

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