File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,29 @@ jobs:
145145 rubygems : 3.2.3
146146 - run : gem --version | grep -F "3.3.3"
147147
148+ testUseBundlerFromRubyGemsUpdate :
149+ name : " Test rubygems: version uses the Bundler installed by the rubygems update"
150+ runs-on : ubuntu-latest
151+ steps :
152+ - uses : actions/checkout@v2
153+ - uses : ./
154+ with :
155+ ruby-version : 2.2
156+ rubygems : 2.7.11
157+ - run : gem --version | grep -F "2.7.11"
158+ - run : bundle --version | grep -F "1.16.6"
159+
160+ testFixedBundlerVersionForOldRuby :
161+ name : " Test bundler: 1.x for old Ruby"
162+ runs-on : ubuntu-latest
163+ steps :
164+ - uses : actions/checkout@v2
165+ - uses : ./
166+ with :
167+ ruby-version : 2.2
168+ bundler : 1.16.6
169+ - run : bundle --version | grep -F "1.16.6" # And not 1.17.x from ~> 1
170+
148171 testMajorBundlerVersion :
149172 name : " Test with a major Bundler version"
150173 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments