Test bundle exec too

This commit is contained in:
Benoit Daloze
2020-01-30 23:24:13 +01:00
parent 001fd1b7c7
commit 052cbd8ee4
2 changed files with 4 additions and 4 deletions
+3 -4
View File
@@ -39,10 +39,9 @@ jobs:
run: ruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(1024) }' run: ruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(1024) }'
- name: C extension test - name: C extension test
run: gem install json:2.2.0 --no-document run: gem install json:2.2.0 --no-document
- name: Bundler version - run: bundle --version
run: bundle --version - run: bundle install
- name: Bundler test - run: bundle exec rake --version
run: bundle install
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+1
View File
@@ -1,5 +1,6 @@
# Used for testing # Used for testing
source 'https://rubygems.org' source 'https://rubygems.org'
gem "rake"
gem "path" gem "path"
gem "json", "2.2.0" gem "json", "2.2.0"