Generate POT - 2025-01-10 (#263) #293
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
name: Run PHPUnit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
phpunit: | |
name: Run tests (PHP ${{ matrix.php-version }}, ${{ matrix.multisite && 'Multisite' || 'Single Site' }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['7.4', '8.3'] | |
multisite: [ true, false ] | |
services: | |
database: | |
image: mysql:latest | |
env: | |
MYSQL_DATABASE: wordpress_tests | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306:3306 | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: phpunit-polyfills:1.1 | |
- name: Install SVN | |
run: sudo apt install -y subversion | |
- name: Setup tests | |
run: bash bin/install-wp-tests.sh wordpress_tests root root 127.0.0.1 latest true | |
- name: Prime the WordPress install for tests | |
id: prime-tests | |
run: XDEBUG_MODE=off phpunit${{ matrix.multisite && ' -c tests/phpunit/multisite.xml' || '' }} --filter gha_install_wp > /dev/null 2>&1 | |
- name: Run tests | |
if: steps.prime-tests.outcome == 'success' | |
run: XDEBUG_MODE=off WP_TESTS_SKIP_INSTALL=1 phpunit${{ matrix.multisite && ' -c tests/phpunit/multisite.xml' || '' }} |