We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c464411 + 301f1a1 commit 413770bCopy full SHA for 413770b
.github/workflows/main.yml
@@ -128,11 +128,6 @@ jobs:
128
name: Prism
129
steps:
130
- uses: actions/checkout@v5
131
- - name: Use prism parser
132
- run: |
133
- cat << EOF > Gemfile.local
134
- gem 'prism'
135
- EOF
136
- name: set up Ruby
137
uses: ruby/setup-ruby@v1
138
with:
Gemfile
@@ -13,5 +13,10 @@ gem 'rubocop-rake', '~> 0.7'
13
gem 'simplecov', '>= 0.19'
14
gem 'yard'
15
16
+# FIXME: Remove when the next prism version is released.
17
+if RUBY_VERSION < '3.0' || RUBY_ENGINE == 'jruby'
18
+ gem 'prism', '!= 1.5.0', '!= 1.5.1'
19
+end
20
+
21
local_gemfile = 'Gemfile.local'
22
eval_gemfile(local_gemfile) if File.exist?(local_gemfile)
0 commit comments