Skip to content

Commit ee585f8

Browse files
test
1 parent 9bd2f59 commit ee585f8

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,14 @@ jobs:
5656
ruby-version: ${{ matrix.ruby }}
5757
bundler-cache: true
5858

59+
- name: Install dependencies
60+
run: |
61+
if [[ "${{ matrix.ruby }}" < "3.2" ]]; then
62+
gem install bundler:2.4.22
63+
bundle _2.4.22_ install
64+
else
65+
bundle install
66+
fi
67+
5968
- name: Run tests
6069
run: bundle exec rake test

Gemfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ gem 'test-unit', '3.7.7'
1717
gem 'timecop', '0.9.10'
1818
gem 'yard', '0.9.38'
1919

20-
if RUBY_VERSION < '3.2'
21-
gem 'erb', '< 6.0'
22-
end
23-
2420
group :benchmark do
2521
gem 'benchmark'
2622
gem 'benchmark-ips'

0 commit comments

Comments
 (0)