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 c26784a commit ab4cc95Copy full SHA for ab4cc95
1 file changed
.github/workflows/maven-ci.yml
@@ -8,11 +8,15 @@ on:
8
jobs:
9
10
maven-verify:
11
- name: "Build on Java ${{ matrix.java }}"
+ name: "Build with Java ${{ matrix.java }} on ${{matrix.os}}"
12
strategy:
13
matrix:
14
+ os: [ubuntu-latest]
15
java: [8, 11, 17, 21]
- runs-on: ubuntu-latest
16
+ include:
17
+ - java: 21
18
+ os: windows-latest
19
+ runs-on: ${{ matrix.os }}
20
steps:
21
- name: "Checkout sources"
22
uses: actions/checkout@v4
0 commit comments