Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 1e62834

Browse files
committedJun 4, 2021
Cache cc-test-reporter
1 parent b05397f commit 1e62834

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed
 

‎.github/workflows/test.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,21 @@ env:
1010
BUNDLE_RETRY: 3
1111
BUNDLE_WITHOUT: documentation:test
1212
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
1314
DEVELOPER_DIR: "/Applications/Xcode_12.4.app/Contents/Developer"
1415
jobs:
1516
prepare-test:
1617
runs-on: ubuntu-18.04
1718
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 }}
1824
- name: Install dependencies
25+
if: steps.cache-cc-test-reporter.outputs.cache-hit != 'true'
1926
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 }}
2128
chmod +x cc-test-reporter
2229
- name: Notify before build
2330
run: ./cc-test-reporter before-build
@@ -130,10 +137,10 @@ jobs:
130137
runs-on: ubuntu-18.04
131138
steps:
132139
- 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 }}
137144
- uses: actions/download-artifact@v2
138145
with:
139146
name: coverage

0 commit comments

Comments
 (0)
This repository has been archived.