Skip to content

Commit 565ac51

Browse files
committed
Check that Bundler works
1 parent f06c4d9 commit 565ac51

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
if: matrix.os == 'windows-latest'
2727
- name: OpenSSL test
2828
run: ruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(2014) }'
29-
- name: Check Bundler is installed
30-
run: bundle --version
3129
- name: C extension test
3230
run: gem install json --no-document
31+
- name: Check that Bundler is installed
32+
run: bundle --version
33+
- name: Check that Bundler works
34+
run: bundle install

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Used for testing
2+
source 'https://rubygems.org'
3+
4+
gem "path"
5+
gem "json"

0 commit comments

Comments
 (0)