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 a9cf28c + 2286998 commit c05086eCopy full SHA for c05086e
.github/workflows/check.yml
@@ -27,6 +27,15 @@ jobs:
27
run: ruby -v
28
- name: bundle install
29
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
39
- name: install embulk.jar
40
run: "curl -L -o embulk.jar https://github.com/embulk/embulk/releases/download/v0.10.49/embulk-0.10.49.jar"
41
- name: rake test
0 commit comments