|
2 | 2 | # It runs multiple validation processes including: |
3 | 3 | # - WordPress Plugin Check for WordPress.org compatibility |
4 | 4 | # - PHP compatibility testing across multiple PHP versions (7.4, 8.0, 8.1, 8.2, 8.3, 8.4) |
5 | | -# - WordPress compatibility testing across multiple WP versions (6.0, latest, nightly) |
| 5 | +# - WordPress compatibility testing across multiple WP versions (6.3, latest, nightly) |
6 | 6 | # - PHPStan static analysis for WordPress-specific code quality |
7 | 7 | # - WordPress security vulnerability scanning using pattern analysis |
8 | 8 | # - PHPCS code standards validation for WordPress coding standards |
@@ -374,7 +374,7 @@ jobs: |
374 | 374 | strategy: |
375 | 375 | matrix: |
376 | 376 | php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] |
377 | | - wp-version: ['6.0', 'latest', 'nightly'] |
| 377 | + wp-version: ['6.3', 'latest', 'nightly'] |
378 | 378 | fail-fast: false |
379 | 379 |
|
380 | 380 | services: |
@@ -593,7 +593,7 @@ jobs: |
593 | 593 | $this->assertNotEmpty($wp_version, 'WordPress version should be available'); |
594 | 594 | |
595 | 595 | // Test that we're running on a supported WordPress version |
596 | | - $min_wp_version = '6.0'; |
| 596 | + $min_wp_version = '6.3'; |
597 | 597 | $this->assertTrue(version_compare($wp_version, $min_wp_version, '>='), |
598 | 598 | "WordPress version {$wp_version} should be >= {$min_wp_version}"); |
599 | 599 | } |
|
0 commit comments