Changeset 58097 for trunk/.github/workflows/phpunit-tests-run.yml
- Timestamp:
- 05/04/2024 07:23:31 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests-run.yml
r57918 r58097 41 41 type: 'string' 42 42 default: 'phpunit.xml.dist' 43 tests-domain: 44 description: 'The domain to use for the tests' 45 required: false 46 type: 'string' 47 default: 'example.org' 43 48 report: 44 49 description: 'Whether to report results to WordPress.org Hosting Tests' … … 51 56 LOCAL_DB_VERSION: ${{ inputs.db-version }} 52 57 LOCAL_PHP_MEMCACHED: ${{ inputs.memcached }} 58 LOCAL_WP_TESTS_DOMAIN: ${{ inputs.tests-domain }} 53 59 PHPUNIT_CONFIG: ${{ inputs.phpunit-config }} 54 60 PUPPETEER_SKIP_DOWNLOAD: ${{ true }} … … 75 81 # - Submit the test results to the WordPress.org host test results. 76 82 phpunit-tests: 77 name: PHP ${{ inputs.php }} / ${{ 'mariadb' == inputs.db-type && 'MariaDB' || 'MySQL' }} ${{ inputs.db-version }}${{ inputs.multisite && ' multisite' || '' }}${{ inputs.memcached && ' with memcached' || '' }}${{ inputs.report && ' (test reporting enabled)' || '' }} 83 name: PHP ${{ inputs.php }} / ${{ 'mariadb' == inputs.db-type && 'MariaDB' || 'MySQL' }} ${{ inputs.db-version }}${{ inputs.multisite && ' multisite' || '' }}${{ inputs.memcached && ' with memcached' || '' }}${{ inputs.report && ' (test reporting enabled)' || '' }} ${{ 'example.org' != inputs.tests-domain && inputs.tests-domain || '' }} 78 84 runs-on: ${{ inputs.os }} 79 85 timeout-minutes: 20
Note: See TracChangeset
for help on using the changeset viewer.