Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/14/2021 05:23:02 AM (4 years ago)
Author:
imath
Message:

Build/test tools: use GitHub Actions to run PHP unit tests

We're starting using GitHub Actions with these 4 jobs to do our PHP Unit tests on this matrix :

  • WP Trunk - PHP 7.4
  • WP Trunk - PHP 8.0
  • WP 5.7 - PHP 7.4
  • WP 5.7 - PHP 8.0

As the future of Travis.org is uncertain, we believe it's an important step to secure our testing tool.

Props slaFFik, Huge Props espellcaste 💪

Fixes #8421

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/assets/phpunit-wp-config.php

    r12712 r12950  
    2727
    2828/** MySQL database password */
    29 define( 'DB_PASSWORD', '');
     29define( 'DB_PASSWORD', 'password');
    3030
    3131/** MySQL hostname */
    32 define( 'DB_HOST', 'mysql');
     32define( 'DB_HOST', 'tests-mysql');
    3333
    3434/** Database Charset to use in creating database tables. */
Note: See TracChangeset for help on using the changeset viewer.