File tree Expand file tree Collapse file tree 1 file changed +24
-20
lines changed
Expand file tree Collapse file tree 1 file changed +24
-20
lines changed Original file line number Diff line number Diff line change 11name : JPX Build
22
33on :
4- push :
5- branches :
6- - main
7- - releases/*
8- - issues/*
9- pull_request :
10- branches :
11- - main
12- - releases/*
4+ push :
5+ branches :
6+ - master
7+ - releases/*
8+ - issues/*
9+ pull_request :
10+ branches :
11+ - master
12+ - releases/*
1313
1414jobs :
15- build :
16- runs-on : ubuntu-latest
17- steps :
18- - uses : actions/checkout@v2
15+ build :
16+ runs-on : ${{ matrix.os }}
17+ strategy :
18+ matrix :
19+ os : [ ubuntu-latest, macos-latest ]
20+ java-version : [ 17, 18-ea ]
21+ steps :
22+ - uses : actions/checkout@v2
1923
20- - name : Set up JDK 17
21- uses : actions/setup-java@v2
22- with :
23- java-version : ' 17 '
24- distribution : ' adopt '
25- - name : Build with Gradle
26- run : ./gradlew build
24+ - name : Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }}
25+ uses : actions/setup-java@v2
26+ with :
27+ java-version : ${{ matrix.java-version }}
28+ distribution : ' zulu '
29+ - name : Build with Gradle
30+ run : ./gradlew build --stacktrace --info
You can’t perform that action at this time.
0 commit comments