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.
1 parent e367969 commit a348118Copy full SHA for a348118
.github/workflows/ci.yml
@@ -107,11 +107,14 @@ jobs:
107
108
- name: Bundle
109
env:
110
+ RUBY_VERSION: ${{ matrix.ruby }}
111
RAILS_VERSION: ${{ matrix.rails }}
112
DB_ADAPTER: ${{ matrix.adapter }}
113
BUNDLE_GEMFILE: gemfiles/${{ matrix.rails }}.gemfile
114
run: |
- gem install bundler
115
+ if [[ "${RUBY_VERSION}" != "2.7" ]]; then
116
+ gem install bundler
117
+ fi
118
bundle config path vendor/bundle
119
bundle install --jobs 4 --retry 3
120
0 commit comments