diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b870677452..c03a098d25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,6 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - bundler-cache: true + - run: gem install rake-compiler - name: Run test - run: bundle exec rake compile + run: rake compile diff --git a/Gemfile b/Gemfile index 56e1ff60a4..7fbce5e219 100644 --- a/Gemfile +++ b/Gemfile @@ -7,4 +7,5 @@ group :development do gem "rake" gem "rake-compiler" gem "rdoc" + gem "psych", "< 5.0" # psych 5.0+ requires Ruby 2.7+ end