Use the new deployment true config setting

This commit is contained in:
Scott Jacobsen
2020-05-16 18:52:00 +02:00
committed by Benoit Daloze
parent a1d280134e
commit 8137829321
+3 -1
View File
@@ -128,7 +128,9 @@ You can cache the installed gems with these two steps:
restore-keys: |
bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
- name: bundle install
run: bundle install --deployment --jobs 4
run: |
bundle config deployment true
bundle install --jobs 4
```
When using a single OS, replace `${{ matrix.os }}` with the OS.