We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aff5d8 commit d062d68Copy full SHA for d062d68
.github/workflows/ci.yml
@@ -16,15 +16,15 @@ jobs:
16
strategy:
17
matrix:
18
os:
19
+ - macos-latest
20
- ubuntu-latest
21
- windows-latest
- - macos-latest
22
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
23
- # https://www.oracle.com/java/technologies/java-se-support-roadmap.html
+ # Reference: https://adoptium.net/support/
24
java:
25
- 17
26
- 21
27
- - 24
+ - 25
28
steps:
29
- name: Checkout
30
uses: actions/checkout@v5
@@ -40,4 +40,6 @@ jobs:
40
if: failure()
41
with:
42
name: surefire-${{ matrix.os }}-${{ matrix.java }}
43
- path: '**/surefire-reports/*.txt'
+ path: |
44
+ **/surefire-reports/*
45
+ **/failsafe-reports/*
0 commit comments