Skip to content

Commit d651ef4

Browse files
committed
chore: Update CI workflow to use bundler cache and bundle exec rake for running tests
1 parent 3612ce2 commit d651ef4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
uses: ruby/setup-ruby@v1
2424
with:
2525
ruby-version: ${{ matrix.ruby-version }}
26-
bundler-cache: false # runs 'bundle install' and caches installed gems automatically
27-
- name: Install dependencies
28-
run: gem install rspec
26+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
2927
- name: Run tests
30-
run: rspec
28+
run: bundle exec rake

0 commit comments

Comments
 (0)