ci: remove usage of deprecated solargraph download-core cmd

Related to cf1cd66307
This commit is contained in:
cn 2023-06-24 16:37:54 +02:00
parent f8878077cf
commit 2258edaae6
1 changed files with 1 additions and 8 deletions

View File

@ -14,13 +14,6 @@ task :solargraph do
sh 'solargraph typecheck'
end
namespace :solargraph do
desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)'
task :init do
sh 'solargraph download-core'
end
end
# renovate: datasource=github-tags depName=hadolint/hadolint
hadolint_version = 'v2.12.0'
@ -78,4 +71,4 @@ end
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
desc 'Run all tasks desired for CI'
task ci: ['solargraph:init', :default, 'docker:lint', :build, 'docker:build', 'docker:e2e']
task ci: [ :default, 'docker:lint', :build, 'docker:build', 'docker:e2e']