From a6881780f46be9c4c580ff2de1b1bcde4bd5a887 Mon Sep 17 00:00:00 2001 From: ima1zumi Date: Tue, 31 Oct 2023 01:05:06 +0900 Subject: [PATCH] Add workaround for CI failure The system on CI rake version is 13.0.6, while the bundler's rake version is 13.1.0. IRB's test depends on the system's rdoc version of rake. Match the rake version installed by bundler to the version installed on the system. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c3b1840e..834f5557a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -72,6 +72,7 @@ jobs: - name: Install dependencies run: | gem install bundler --no-document + gem install rake gem rdoc --all --ri --no-rdoc WITH_VTERM=1 bundle install - name: rake test_yamatanooroti