We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e70e91 commit e0af88dCopy full SHA for e0af88d
.github/workflows/ci.yml
@@ -36,17 +36,13 @@ jobs:
36
notify_when: "failure"
37
env:
38
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
39
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v4
40
- name: Install package dependencies
41
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
42
- name: Set up Ruby
43
uses: ruby/setup-ruby@v1
44
with:
45
ruby-version: ${{matrix.ruby}}
46
- - name: Install latest bundler
47
- run: |
48
- gem install bundler --no-document
49
- - name: Bundle install
50
- run: bundle install --jobs 4 --retry 3
+ bundler-cache: true # 'bundle install' and cache gems
51
- name: Run all tests
52
run: script/ci
0 commit comments