Skip to content

Commit 2750b95

Browse files
committed
bundle installation failing, debugging
1 parent e0a49ff commit 2750b95

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,19 @@ jobs:
4545
uses: ruby/setup-ruby@v1
4646
with:
4747
ruby-version: ${{ matrix.ruby }}
48-
bundler: '2.4'
49-
bundler-cache: true
50-
cache-version: 1 # ignore contents of the cache and get and build all the gems anew.
48+
bundler-cache: false
5149

5250
- name: Print Ruby version
5351
run: ruby -v
52+
53+
- name: Install bundler
54+
run: gem install bundler -v '~> 2.4'
5455

5556
- name: Print Bundler version
5657
run: bundle -v
58+
59+
- name: Bundle install
60+
run: bundle install
5761

5862
- name: Run tests
5963
env:

0 commit comments

Comments
 (0)