Skip to content

Commit

Permalink
Improve speed of the codecov-step
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Mar 12, 2023
1 parent b23e632 commit aa91c9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/php.yml
Expand Up @@ -197,7 +197,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: coverage-data
path: ${{ github.workspace }}
path: ${{ github.workspace }}/build

unit-tests-windows:
name: "Syntax and unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}"
Expand Down Expand Up @@ -254,10 +254,12 @@ jobs:
runs-on: [ubuntu-latest]
needs: [unit-tests-linux]
steps:
- uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: coverage-data
path: ${{ github.workspace }}
path: ${{ github.workspace }}/build

- name: Codecov
uses: codecov/codecov-action@v3
5 changes: 1 addition & 4 deletions .markdownlintrc
@@ -1,4 +1 @@
{
"default": true,
"MD013": false
}
vendor/*

0 comments on commit aa91c9b

Please sign in to comment.