Skip to content

Commit 820831d

Browse files
authored
Merge pull request #2466 from yahonda/show_gemfile_lock_in_ruby_head
Add Gemfile.lock display to CI workflows
2 parents 80e8387 + 736342d commit 820831d

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/ruby_head.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ jobs:
7373
- name: Bundle install
7474
run: |
7575
bundle install --jobs 4 --retry 3
76+
- name: Show Gemfile.lock
77+
run: |
78+
cat Gemfile.lock
7679
- name: Run RSpec
7780
run: |
7881
bundle exec rspec

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ jobs:
7979
- name: Bundle install
8080
run: |
8181
bundle install --jobs 4 --retry 3
82+
- name: Show Gemfile.lock
83+
run: |
84+
cat Gemfile.lock
8285
- name: Run RSpec
8386
run: |
8487
bundle exec rspec

.github/workflows/test_11g.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ jobs:
8383
- name: Bundle install
8484
run: |
8585
bundle install --jobs 4 --retry 3
86+
- name: Show Gemfile.lock
87+
run: |
88+
cat Gemfile.lock
8689
- name: Run RSpec
8790
run: |
8891
bundle exec rspec

0 commit comments

Comments
 (0)