Changeset 51357 for branches/5.8/.github/workflows/test-coverage.yml
- Timestamp:
- 07/06/2021 07:12:23 PM (4 years ago)
- Location:
- branches/5.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.8
-
branches/5.8/.github/workflows/test-coverage.yml
r50595 r51357 45 45 # - Install WordPress within the Docker container. 46 46 # - Run the PHPUnit tests as a single site. 47 # - Ensures version-controlled files are not modified or deleted. 47 48 # - Upload the single site code coverage report to Codecov.io. 48 49 # - Run the PHPUnit tests as a multisite. 50 # - Ensures version-controlled files are not modified or deleted. 49 51 # - Upload the multisite code coverage report to Codecov.io. 50 52 test-coverage-report: … … 131 133 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --coverage-clover wp-code-coverage-single-clover-${{ github.sha }}.xml 132 134 135 - name: Ensure version-controlled files are not modified during the tests 136 run: git diff --exit-code 137 133 138 - name: Upload single site report to Codecov 134 139 if: ${{ ! matrix.multisite }} … … 142 147 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml --coverage-clover wp-code-coverage-multisite-clover-${{ github.sha }}.xml 143 148 149 - name: Ensure version-controlled files are not modified during the tests 150 run: git diff --exit-code 151 144 152 - name: Upload multisite report to Codecov 145 153 if: ${{ matrix.multisite }}
Note: See TracChangeset
for help on using the changeset viewer.