Skip to content

Commit 764fb97

Browse files
committed
fix: add condition for using steep and typeprof to pass CI with all Ruby versions
1 parent 448c1e9 commit 764fb97

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Gemfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ source 'https://rubygems.org'
66
gemspec
77

88
group :development do
9-
gem 'steep', require: false
10-
gem 'typeprof'
9+
if RUBY_VERSION >= '3.0'
10+
gem 'steep', require: false
11+
gem 'typeprof'
12+
end
1113
end
1214

1315
group :test do

0 commit comments

Comments
 (0)