Skip to content

Commit 638cb59

Browse files
authored
Different bundler versions are annoying
1 parent 5c10a32 commit 638cb59

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313
run: |
1414
apt-get update
1515
apt-get install -y cmake
16-
bundle install --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
17-
bundle binstubs --all --force
16+
bundle install --binstubs --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
1817
- name: rspec
1918
run: bundle exec rake spec
2019
container:
@@ -34,8 +33,7 @@ jobs:
3433
run: |
3534
apt-get update
3635
apt-get install -y cmake
37-
bundle install --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
38-
bundle binstubs --all --force
36+
bundle install --binstubs --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
3937
- name: spec
4038
run: bundle exec rake rspec
4139
container:
@@ -55,8 +53,7 @@ jobs:
5553
run: |
5654
apt-get update
5755
apt-get install -y cmake
58-
bundle install --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
59-
bundle binstubs --all --force
56+
bundle install --binstubs --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
6057
- name: rspec
6158
run: bundle exec rake spec
6259
container:
@@ -73,8 +70,7 @@ jobs:
7370
run: |
7471
apt-get update
7572
apt-get install -y cmake
76-
bundle install --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
77-
bundle binstubs --all --force
73+
bundle install --binstubs --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
7874
- name: rubocop
7975
run: bundle exec rake rubocop
8076
container:
@@ -91,11 +87,10 @@ jobs:
9187
run: |
9288
apt-get update
9389
apt-get install -y cmake
94-
bundle install --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
95-
bundle binstubs --all --force
90+
bundle install --binstubs --jobs 4 --retry 3 --without='' --no-prune --path vendor/bundle --local
9691
- name: rubocop
9792
run: |
98-
bundle exec rake coverage
93+
bundle exec rake coverage:all
9994
grep -q "100% test coverage. You're all set, friend" coverage/coverage.txt
10095
container:
10196
image: "ruby:2.6"

0 commit comments

Comments
 (0)