Changeset 51355 for trunk/.github/workflows/test-coverage.yml
- Timestamp:
- 07/06/2021 06:36:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-coverage.yml
r51341 r51355 44 44 # - Install WordPress within the Docker container. 45 45 # - Run the PHPUnit tests as a single site. 46 # - Ensures version-controlled files are not modified or deleted. 46 47 # - Upload the single site code coverage report to Codecov.io. 47 48 # - Run the PHPUnit tests as a multisite. 49 # - Ensures version-controlled files are not modified or deleted. 48 50 # - Upload the multisite code coverage report to Codecov.io. 49 51 test-coverage-report: … … 122 124 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --coverage-clover wp-code-coverage-single-clover-${{ github.sha }}.xml 123 125 126 - name: Ensure version-controlled files are not modified during the tests 127 run: git diff --exit-code 128 124 129 - name: Upload single site report to Codecov 125 130 if: ${{ ! matrix.multisite }} … … 133 138 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml --coverage-clover wp-code-coverage-multisite-clover-${{ github.sha }}.xml 134 139 140 - name: Ensure version-controlled files are not modified during the tests 141 run: git diff --exit-code 142 135 143 - name: Upload multisite report to Codecov 136 144 if: ${{ matrix.multisite }}
Note: See TracChangeset
for help on using the changeset viewer.