From bce805e6c96fbcadf925c6c2e414f80b262d9e57 Mon Sep 17 00:00:00 2001 From: Alexander Momchilov Date: Fri, 21 Aug 2026 12:06:02 -0400 Subject: [PATCH] Delete redundant `typecheck_prism` Rake task We're already using Prism, since https://github.com/Shopify/type_toolkit/pull/25 --- .github/workflows/ci.yml | 3 --- Rakefile | 7 ------- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a9e82b..ee58a50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,6 @@ jobs: rubygems: 4.0.4 - name: Run type check run: bundle exec rake typecheck - - name: Run type check with Prism parser - run: bundle exec rake typecheck_prism - continue-on-error: true - name: Run tests run: bundle exec rake test - name: Lint Ruby files diff --git a/Rakefile b/Rakefile index 043cb2f..a0b3a96 100644 --- a/Rakefile +++ b/Rakefile @@ -14,13 +14,6 @@ desc "alias for typecheck"; task tc: :typecheck desc "alias for typecheck"; task srb: :typecheck desc "alias for typecheck"; task sorbet: :typecheck -desc "Type-check the code base with Sorbet using Prism" -task :typecheck_prism do - sh "bundle exec srb tc --parser=prism" do |ok, _res| - abort unless ok - end -end - require "minitest/test_task" Minitest::TestTask.create do |t|