diff --git a/.github/workflows/third-party-tests.yml b/.github/workflows/third-party-tests.yml index 928c3f3..1280bae 100644 --- a/.github/workflows/third-party-tests.yml +++ b/.github/workflows/third-party-tests.yml @@ -22,6 +22,7 @@ jobs: - 'spiral' - 'symfony_polyfill' - 'composer' + - 'wordpress' steps: - name: checkout diff --git a/tests/third_party_tests.rs b/tests/third_party_tests.rs index 8b0f5e9..827b464 100644 --- a/tests/third_party_tests.rs +++ b/tests/third_party_tests.rs @@ -124,6 +124,17 @@ fn third_party_9_composer() { ); } +#[test] +fn third_party_10_wordpress() { + test_repository( + "wordpress", + "https://github.com/WordPress/WordPress", + "master", + &["wp-admin", "wp-content", "wp-includes"], + &[] + ); +} + fn test_repository( name: &str, repository: &str,