chore: add silverstripe framework to integration tests (#186)

This commit is contained in:
William Desportes 2022-12-09 15:01:58 +01:00 committed by GitHub
parent 5127b2116d
commit eb79c25361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -24,6 +24,8 @@ jobs:
- 'composer'
- 'wordpress'
- 'chubbyphp_framework'
- 'silverstripe_framework_core'
- 'silverstripe_framework_cms'
steps:
- name: checkout

View File

@ -146,6 +146,28 @@ fn third_party_11_chubbyphp_framework() {
);
}
#[test]
fn third_party_12_silverstripe_framework_core() {
test_repository(
"silverstripe-framework",
"https://github.com/silverstripe/silverstripe-framework",
"4",
&["src", "tests"],
&[],
);
}
#[test]
fn third_party_12_silverstripe_framework_cms() {
test_repository(
"silverstripe-cms",
"https://github.com/silverstripe/silverstripe-cms",
"4",
&["code", "tests"],
&[],
);
}
fn test_repository(
name: &str,
repository: &str,