@@ -49,20 +49,20 @@ jobs:
4949
5050 - run : bundle install
5151
52- - run : rake compile
52+ - run : bundle exec rake compile
5353
5454 # If Fiddle in Ruby's master has the same version of this Fiddle,
5555 # "gem install pkg/*.gem" fails.
56- - run : rake version:bump
56+ - run : bundle exec rake version:bump
5757 if : >-
5858 matrix.ruby == 'debug' ||
5959 matrix.ruby == 'mingw' ||
6060 matrix.ruby == 'mswin'
6161
6262 # This is for ensuring using Fiddle in this repository.
63- - run : ruby -Ilib test/run.rb
63+ - run : bundle exec ruby -Ilib test/run.rb
6464
65- - run : rake install
65+ - run : bundle exec rake install
6666
6767 - name : Run test against installed gem
6868 # We can't use Fiddle gem with older RubyInstaller because
7272 matrix.os != 'windows-latest' ||
7373 (matrix.os == 'windows-latest' && matrix.ruby >= '3.0')
7474 run : |
75- ruby -run -e mkdir -- -p tmp/
76- ruby -run -e cp -- -pr test/ tmp/
75+ bundle exec ruby -run -e mkdir -- -p tmp/
76+ bundle exec ruby -run -e cp -- -pr test/ tmp/
7777 cd tmp
7878 ruby test/run.rb
7979
@@ -98,16 +98,16 @@ jobs:
9898
9999 - run : sudo bundle install --jobs $(nproc)
100100
101- - run : rake compile
101+ - run : bundle exec rake compile
102102
103- - run : ruby -Ilib test/run.rb
103+ - run : bundle exec ruby -Ilib test/run.rb
104104
105- - run : sudo rake install
105+ - run : sudo bundle exec rake install
106106
107107 - name : Run test against installed gem
108108 run : |
109- ruby -run -e mkdir -- -p tmp/
110- ruby -run -e cp -- -pr test/ tmp/
109+ bundle exec ruby -run -e mkdir -- -p tmp/
110+ bundle exec ruby -run -e cp -- -pr test/ tmp/
111111 cd tmp
112112 ruby test/run.rb
113113
0 commit comments