Skip to content

Commit 5deb2f5

Browse files
authored
CI: Drop extra 'bundle install' and explain bundler-cache
1 parent 9e6d117 commit 5deb2f5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.entry.ruby }}
24-
bundler-cache: true
24+
bundler-cache: true # 'bundle install' and cache gems
2525
- name: Set Concurrency
2626
run: |
2727
if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then
@@ -32,12 +32,10 @@ jobs:
3232
continue-on-error: ${{ matrix.entry.ignore || false }}
3333
env:
3434
RACK_ENV: test
35-
run: |
36-
bundle install
37-
bundle exec rake
35+
run: bundle exec rake
3836
- name: Coveralls
3937
uses: coverallsapp/github-action@master
4038
with:
4139
github-token: ${{ secrets.GITHUB_TOKEN }}
4240
- name: Coveralls Finished
43-
uses: coverallsapp/github-action@master
41+
uses: coverallsapp/github-action@master

0 commit comments

Comments
 (0)