Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check.rake « ci_secure_files « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c538a9365c04e63cb7a85fe18d6830a47e7c917 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

namespace :gitlab do
  namespace :ci_secure_files do
    desc 'GitLab | CI Secure Files | Check integrity of uploaded Secure Files'
    task check: :environment do
      Gitlab::Verify::RakeTask.run!(Gitlab::Verify::CiSecureFiles)
    end
  end
end