chore: add composer to third party tests

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

View File

@ -21,6 +21,7 @@ jobs:
- 'mezzio'
- 'spiral'
- 'symfony_polyfill'
- 'composer'
steps:
- name: checkout

View File

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