Skip to content

Commit b69c94e

Browse files
committed
Make bundler update quiet and separate actions
1 parent 6d81735 commit b69c94e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,17 @@ jobs:
2424
with:
2525
ruby-version: ${{ matrix.ruby }}
2626

27-
- name: Bundle
27+
- name: Update System
2828
run: |
2929
gem update --system
30-
gem update bundler
30+
gem update bundler --quiet
31+
32+
- name: Bundle install for Annotate models
33+
run: |
3134
bundle install --jobs 4 --retry 3
35+
36+
- name: Bundle install for Rails app
37+
run: |
3238
BUNDLE_GEMFILE=spec/integration/rails_6.0.2.1/Gemfile bundle install --jobs 4 --retry 3
3339
3440
- name: Test

0 commit comments

Comments
 (0)