We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551ef93 commit 752bfaeCopy full SHA for 752bfae
action.yml
@@ -41,14 +41,19 @@ runs:
41
- uses: ruby/[email protected]
42
with:
43
ruby-version: 2.7 # Not needed with a .ruby-version file
44
- bundler-cache: true
45
- working-directory: ${{ github.action_path }}
46
47
- # - name: Bundle Install
48
- # run: |
49
- # bundle install --jobs 4 --retry 3
50
- # working-directory: ${{ github.action_path }}
51
- # shell: bash
+ - name: Cache Ruby Gems
+ uses: actions/cache@v2
+ with:
+ path: ${{ github.action_path }}
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
+ restore-keys: ${{ runner.os }}-gems-
+
52
+ - name: Bundle Install
53
+ run: |
54
+ bundle install --jobs 4 --retry 3
55
+ working-directory: ${{ github.action_path }}
56
+ shell: bash
57
58
- run: |
59
ruby entrypoint.rb
0 commit comments