We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f06c4d9 commit 565ac51Copy full SHA for 565ac51
.github/workflows/test.yml
@@ -26,7 +26,9 @@ jobs:
26
if: matrix.os == 'windows-latest'
27
- name: OpenSSL test
28
run: ruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(2014) }'
29
- - name: Check Bundler is installed
30
- run: bundle --version
31
- name: C extension test
32
run: gem install json --no-document
+ - name: Check that Bundler is installed
+ run: bundle --version
33
+ - name: Check that Bundler works
34
+ run: bundle install
Gemfile
@@ -0,0 +1,5 @@
1
+# Used for testing
2
+source 'https://rubygems.org'
3
+
4
+gem "path"
5
+gem "json"
0 commit comments