Merge branch '5.6.x' #177
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: PHPUnit | |
on: [push] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Composer | |
uses: php-actions/composer@v6 | |
- name: Set up MySQL | |
run: | | |
sudo /etc/init.d/mysql start | |
mysql -e 'CREATE DATABASE wordpress_test' -uroot -proot | |
- name: Set up WP and its test suite, and run phpunit | |
run: | | |
bash tests/install-wp-tests.sh wordpress_test root root localhost latest true $RUNNER_TEMP | |
WP_TESTS_DIR=$RUNNER_TEMP/wordpress-tests-lib | |
WP_CORE_DIR=$RUNNER_TEMP/wordpress | |
ls -la $WP_TESTS_DIR | |
./vendor/bin/phpunit |