This repository was archived by the owner on Mar 23, 2025. It is now read-only.
File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 10
10
BUNDLE_RETRY : 3
11
11
BUNDLE_WITHOUT : documentation:test
12
12
CC_TEST_REPORTER_ID : ${{ secrets.CC_TEST_REPORTER_ID }}
13
+ CC_TEST_REPORTER_URL : https://codeclimate.com/downloads/test-reporter/test-reporter-0.6.3-linux-amd64
13
14
DEVELOPER_DIR : " /Applications/Xcode_12.4.app/Contents/Developer"
14
15
jobs :
15
16
prepare-test :
16
17
runs-on : ubuntu-18.04
17
18
steps :
19
+ - uses : actions/cache@v2
20
+ id : cache-cc-test-reporter
21
+ with :
22
+ path : cc-test-reporter
23
+ key : ${{ env.CC_TEST_REPORTER_URL }}
18
24
- name : Install dependencies
25
+ if : steps.cache-cc-test-reporter.outputs.cache-hit != 'true'
19
26
run : |
20
- curl -LSso cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-0.6.3-linux-amd64
27
+ curl -LSso cc-test-reporter ${{ env.CC_TEST_REPORTER_URL }}
21
28
chmod +x cc-test-reporter
22
29
- name : Notify before build
23
30
run : ./cc-test-reporter before-build
@@ -130,10 +137,10 @@ jobs:
130
137
runs-on : ubuntu-18.04
131
138
steps :
132
139
- uses : actions/checkout@v2
133
- - name : Install dependencies
134
- run : |
135
- curl -LSso cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-0.6.3-linux-amd64
136
- chmod +x cc-test-reporter
140
+ - uses : actions/cache@v2
141
+ with :
142
+ path : cc-test-reporter
143
+ key : ${{ env.CC_TEST_REPORTER_URL }}
137
144
- uses : actions/download-artifact@v2
138
145
with :
139
146
name : coverage
You can’t perform that action at this time.
0 commit comments