-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(merge-coverage): add workflow to prove it works
- Loading branch information
Showing
4 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: "Merge Coverage Bis" | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: php-actions/composer@master | ||
- uses: php-actions/phpunit@v6 | ||
with: | ||
testsuite: unit | ||
coverage_php: reports/unit.php | ||
- uses: actions/cache/save@v4 | ||
with: | ||
path: reports | ||
key: reports-unit-${{ github.run_id }} | ||
|
||
integration: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: php-actions/composer@master | ||
- uses: php-actions/phpunit@v6 | ||
with: | ||
testsuite: integration | ||
coverage_php: reports/integration.php | ||
- uses: actions/cache/save@v4 | ||
with: | ||
path: reports | ||
key: reports-integration-${{ github.run_id }} | ||
|
||
coverage: | ||
runs-on: ubuntu-latest | ||
needs: [integration, unit] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: reports | ||
key: reports-unit-${{ github.run_id }} | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: reports | ||
key: reports-integration-${{ github.run_id }} | ||
- uses: php-actions/composer@master | ||
- run: php bin/merge-coverage.php | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: "Merge Coverage" | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
tools: composer, phpunit:11 | ||
coverage: xdebug | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: composer install | ||
- run: phpunit --testsuite unit --coverage-php reports/unit.php | ||
- uses: actions/cache/save@v4 | ||
with: | ||
path: reports | ||
key: reports-unit-${{ github.run_id }} | ||
|
||
integration: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
tools: composer, phpunit:11 | ||
coverage: xdebug | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: composer install | ||
- run: phpunit --testsuite integration --coverage-php reports/integration.php | ||
- uses: actions/cache/save@v4 | ||
with: | ||
path: reports | ||
key: reports-integration-${{ github.run_id }} | ||
|
||
coverage: | ||
runs-on: ubuntu-latest | ||
needs: [integration, unit] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: reports | ||
key: reports-unit-${{ github.run_id }} | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: reports | ||
key: reports-integration-${{ github.run_id }} | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
tools: composer, phpunit:11 | ||
coverage: xdebug | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: composer install | ||
- run: php bin/merge-coverage.php | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters