From a2f4b37ace2a23bc2273e201b8b525f29742146c Mon Sep 17 00:00:00 2001 From: Ryan Chandler Date: Fri, 9 Dec 2022 02:09:47 +0000 Subject: [PATCH] chore: add symfony/polyfill to third party tests --- .github/workflows/third-party-tests.yml | 3 ++- tests/third_party_tests.rs | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/third-party-tests.yml b/.github/workflows/third-party-tests.yml index 5c4a64b..3fb9ac8 100644 --- a/.github/workflows/third-party-tests.yml +++ b/.github/workflows/third-party-tests.yml @@ -15,11 +15,12 @@ jobs: target: - 'php_standard_library' - 'php_parser' - - 'symfony' + - 'symfony_framework' - 'laravel' - 'yii' - 'mezzio' - 'spiral' + - 'symfony_polyfill' steps: - name: checkout diff --git a/tests/third_party_tests.rs b/tests/third_party_tests.rs index 0afdccb..4bf9154 100644 --- a/tests/third_party_tests.rs +++ b/tests/third_party_tests.rs @@ -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,