Skip to content

Commit

Permalink
Re-add k8s versions + fix NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
LEDfan committed Feb 21, 2024
1 parent 8f49394 commit 4203095
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
matrix:
java: [ 17 ]
kubernetes:
#- 'v1.24.17'
#- 'v1.25.15'
#- 'v1.26.14'
#- 'v1.27.11'
#- 'v1.28.7'
- 'v1.24.17'
- 'v1.25.15'
- 'v1.26.14'
- 'v1.27.11'
- 'v1.28.7'
- 'v1.29.2'

steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ class TestExecutionListener : SummaryGeneratingListener() {

init {
Runtime.getRuntime().addShutdownHook(Thread {
summary.printTo(PrintWriter(System.out))
if (summary != null) {
summary.printTo(PrintWriter(System.out))
}
})
}

Expand Down Expand Up @@ -60,4 +62,4 @@ class TestExecutionListener : SummaryGeneratingListener() {
println()
}

}
}

0 comments on commit 4203095

Please sign in to comment.