Skip to content

Commit f37bea4

Browse files
committed
Improve speed of the codecov-step
1 parent bba560f commit f37bea4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/php.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
uses: actions/upload-artifact@v3
200200
with:
201201
name: coverage-data
202-
path: ${{ github.workspace }}
202+
path: ${{ github.workspace }}/build
203203

204204
unit-tests-windows:
205205
name: "Syntax and unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}"
@@ -256,10 +256,12 @@ jobs:
256256
runs-on: [ubuntu-latest]
257257
needs: [unit-tests-linux]
258258
steps:
259+
- uses: actions/checkout@v3
260+
259261
- uses: actions/download-artifact@v3
260262
with:
261263
name: coverage-data
262-
path: ${{ github.workspace }}
264+
path: ${{ github.workspace }}/build
263265

264266
- name: Codecov
265267
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)