File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,16 @@ jobs:
3434 - name : Checkout
3535 uses : actions/checkout@v4
3636 - name : Setup Ruby
37- # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
38- uses : ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
39- with :
40- ruby-version : ' 3.1' # Not needed with a .ruby-version file
41- bundler-cache : true # runs 'bundle install' and caches installed gems automatically
42- cache-version : 0 # Increment this number if you need to re-download cached gems
37+ uses : ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
38+ with :
39+ ruby-version : ' 3.1'
40+ bundler-cache : false # 👈 desligamos o cache automático
4341
44- - name : Add Linux platform to bundler
45- run : bundle lock --add-platform x86_64-linux
42+ - name : Add Linux platform to bundler
43+ run : bundle lock --add-platform x86_64-linux
44+
45+ - name : Install dependencies
46+ run : bundle install --jobs 4 --retry 3
4647
4748 - name : Setup Pages
4849 id : pages
You can’t perform that action at this time.
0 commit comments