chore: add wordpress to third party tests

This commit is contained in:
Ryan Chandler 2022-12-09 02:14:09 +00:00
parent 19e9fdf01b
commit cdf422bea8
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA
2 changed files with 12 additions and 0 deletions

View File

@ -22,6 +22,7 @@ jobs:
- 'spiral'
- 'symfony_polyfill'
- 'composer'
- 'wordpress'
steps:
- name: checkout

View File

@ -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,