Skip to content

Commit

Permalink
Fix bundler in CI
Browse files Browse the repository at this point in the history
[Bundler 2.5 dropped support for Ruby 2.7](https://github.com/rubygems/rubygems/releases/tag/bundler-v2.5.0).
Since we are testing with Ruby 2.7, we should pin the version of Bundler
to 2.4.x since this is the last version that's compatible with 2.7.
  • Loading branch information
dtcristo committed Mar 5, 2024
1 parent fb9278e commit b343a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
sudo apt-get -yqq install libpq-dev postgresql-client
createdb que-test
gem install bundler
gem install bundler --version '~> 2.4.0'
bundle install --jobs 4 --retry 3
USE_RAILS=true bundle exec rake test
bundle exec rake test

0 comments on commit b343a76

Please sign in to comment.