Skip to content

Commit ab27ee1

Browse files
committed
maven.yml with windows
1 parent 0402781 commit ab27ee1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/maven.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Java CI with Maven
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
strategy:
7+
matrix:
8+
os: [windows-2016, windows-2019]
9+
distribution: [zulu, adopt-hotspot, adopt-openj9]
10+
runs-on: ${{ matrix.os }}
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up JDK 11
14+
uses: actions/setup-java@v2
15+
with:
16+
java-version: '11'
17+
distribution: ${{ matrix.distribution }}
18+
- name: Build with Maven
19+
run: mvn -B package --file pom.xml
20+

0 commit comments

Comments
 (0)