Skip to content

Commit 50e4434

Browse files
Include new integration tests
1 parent 807d046 commit 50e4434

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# might be helpful to limit threads in local builds
3232
#max-parallel: 2
3333
matrix:
34-
it: [it1, it2, it3, it4, it5, it6]
34+
it: [it1, it2, it3, it4, it5, it6, it7]
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout

gradle/integration-test.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ task integrationTest(type: Test) {
1717
'**/ScanIT_Gradle_Versions_6_0*.class',
1818
'**/ScanIT_Gradle_Versions_7_6*.class',
1919
'**/ScanIT_Gradle_Versions_8_3*.class',
20-
'**/ScanIT_Gradle_Versions_8_6*.class'].eachWithIndex { className, index ->
20+
'**/ScanIT_Gradle_Versions_8_6*.class',
21+
'**/ScanIT_Gradle_Versions_8_11*.class'].eachWithIndex { className, index ->
2122
task "it${index + 1}"(type: Test) {
2223
includes = [className]
2324
description = "Runs the integration tests on class $className."

0 commit comments

Comments
 (0)