Skip to content

Commit ab4cc95

Browse files
committed
chore: run ci testing on windows too
1 parent c26784a commit ab4cc95

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/maven-ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ on:
88
jobs:
99

1010
maven-verify:
11-
name: "Build on Java ${{ matrix.java }}"
11+
name: "Build with Java ${{ matrix.java }} on ${{matrix.os}}"
1212
strategy:
1313
matrix:
14+
os: [ubuntu-latest]
1415
java: [8, 11, 17, 21]
15-
runs-on: ubuntu-latest
16+
include:
17+
- java: 21
18+
os: windows-latest
19+
runs-on: ${{ matrix.os }}
1620
steps:
1721
- name: "Checkout sources"
1822
uses: actions/checkout@v4

0 commit comments

Comments
 (0)