Skip to content

Commit

Permalink
fix for bundler install on 2.7 (#424)
Browse files Browse the repository at this point in the history
* fix for bundler install on 2.7

* fix for bundler install on 2.7
  • Loading branch information
mensfeld authored Dec 16, 2023
1 parent e5d7324 commit 082a8b5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
- name: Install latest bundler
run: |
gem install bundler --no-document
if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then
gem install bundler -v 2.4.4 --no-document
else
gem install bundler --no-document
fi
bundle config set without 'tools benchmarks docs'
- name: Bundle install
Expand Down

0 comments on commit 082a8b5

Please sign in to comment.