File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+
2+ name : Build
3+
4+ on : [push, pull_request]
5+
6+ jobs :
7+ build :
8+
9+ runs-on : ${{ matrix.os }}
10+ permissions :
11+ contents : read
12+ packages : write
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ java_version : [8, 18-ea]
17+ os : [ubuntu-latest]
18+
19+ steps :
20+ - uses : actions/checkout@v2
21+ - name : Set up Java
22+ uses : actions/setup-java@v2
23+ with :
24+ java-version : ${{ matrix.java_version }}
25+ distribution : ' zulu'
26+ - name : Maven cache
27+ uses : actions/cache@v2
28+ env :
29+ cache-name : maven-cache
30+ with :
31+ path :
32+ ~/.m2
33+ key : build-${{ env.cache-name }}
34+ - name : Build with Maven
35+ run : mvn clean verify
36+
Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >org.avaje</groupId >
88 <artifactId >java8-oss</artifactId >
9- <version >3.2 </version >
9+ <version >3.3 </version >
1010 </parent >
1111
1212 <groupId >io.ebean</groupId >
You can’t perform that action at this time.
0 commit comments