From a2e4480e0af9b5a87d9ae71b616454d9fde9ff7f Mon Sep 17 00:00:00 2001 From: cn Date: Thu, 27 Feb 2025 22:59:44 +0100 Subject: [PATCH] project: don't run solargraph by default --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 19dc61b..2261486 100644 --- a/Rakefile +++ b/Rakefile @@ -73,7 +73,7 @@ namespace :bundle do end end -task default: [:rubocop, :spec, 'bundle:audit', :solargraph] +task default: [:rubocop, :spec, 'bundle:audit'] desc 'Run all tasks desired for CI' task ci: [:default, 'docker:lint', :build, 'docker:build', 'docker:e2e']