chore: add symfony/polyfill to third party tests

This commit is contained in:
Ryan Chandler 2022-12-09 02:09:47 +00:00
parent 78479f5861
commit a2f4b37ace
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA
2 changed files with 13 additions and 1 deletions

View File

@ -15,11 +15,12 @@ jobs:
target:
- 'php_standard_library'
- 'php_parser'
- 'symfony'
- 'symfony_framework'
- 'laravel'
- 'yii'
- 'mezzio'
- 'spiral'
- 'symfony_polyfill'
steps:
- name: checkout

View File

@ -102,6 +102,17 @@ fn third_party_7_mezzio_framework() {
);
}
#[test]
fn third_party_8_symfony_polyfill() {
test_repository(
"symfony-polyfill",
"https://github.com/symfony/polyfill",
"main",
&["src", "tests"],
&[],
);
}
fn test_repository(
name: &str,
repository: &str,