Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI for MW 1.42/43 #116

Merged
merged 2 commits into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,20 @@ jobs:
database_image: "mariadb:10"
coverage: false
experimental: false
- mediawiki_version: '1.42'
smw_version: dev-master
php_version: 8.1
database_type: mysql
database_image: "mariadb:10"
coverage: false
experimental: false
- mediawiki_version: '1.43'
smw_version: dev-master
php_version: 8.1
database_type: mysql
database_image: "mariadb:10"
coverage: false
experimental: false

env:
MW_VERSION: ${{ matrix.mediawiki_version }}
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Integration/ConfigurationIntegrityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @author mwjames
*/
use GlobalVarConfig;
class ConfigurationIntegrityTest extends \PHPUnit_Framework_TestCase {
class ConfigurationIntegrityTest extends \PHPUnit\Framework\TestCase {

public function testCanReadDatabaseSchema() {
$cfg = new GlobalVarConfig( "egSWL" );
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/TableUpdaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @author mwjames
*/
class TableUpdaterTest extends \PHPUnit_Framework_TestCase {
class TableUpdaterTest extends \PHPUnit\Framework\TestCase {

public function setUp(): void {
if ( version_compare( $GLOBALS[ 'wgVersion' ], '1.28', 'gt' ) ) {
Expand Down
Loading