Skip to content

Commit 2286998

Browse files
committed
Fix CI error with JRuby 9.4 test.
Avoids the following error. You have already activated rake 13.0.6, but your Gemfile requires rake 13.1.0.
1 parent a9cf28c commit 2286998

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/check.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
run: ruby -v
2828
- name: bundle install
2929
run: bundle install
30+
#
31+
# This step avoids the following error in the JRuby 9.4 test.
32+
#
33+
# Gem::LoadError: You have already activated rake 13.0.6,
34+
# but your Gemfile requires rake 13.1.0. Prepending
35+
# `bundle exec` to your command may solve this.
36+
#
37+
- name: install rake 13.1.0
38+
run: gem install rake -v 13.1.0
3039
- name: install embulk.jar
3140
run: "curl -L -o embulk.jar https://github.com/embulk/embulk/releases/download/v0.10.49/embulk-0.10.49.jar"
3241
- name: rake test

0 commit comments

Comments
 (0)