Skip to content

Commit 426758c

Browse files
committed
Use bundle install instead of bundler-cache
1 parent 4535a2e commit 426758c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
uses: ruby/setup-ruby@v1
3737
with:
3838
ruby-version: ${{ matrix.ruby }}
39-
bundler-cache: true # 'bundle install' and cache gems
39+
- name: Install dependencies
40+
run: bundle install
4041
- name: Build
41-
run: bundle exec rake compile
42+
run: rake compile
4243
- name: Run test
4344
run: rake test

0 commit comments

Comments
 (0)