File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ name : ebean-insight-server EA
3+
4+ on :
5+ workflow_dispatch :
6+ schedule :
7+ - cron : ' 39 9 * * 5'
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ${{ matrix.os }}
13+ permissions :
14+ contents : read
15+ packages : write
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ java_version : [EA]
20+ os : [ubuntu-latest]
21+
22+ steps :
23+ - uses : actions/checkout@v4
24+ - name : Set up Java
25+ uses : oracle-actions/setup-java@v1
26+ with :
27+ website : jdk.java.net
28+ release : ${{ matrix.java_version }}
29+ - name : Maven cache
30+ uses : actions/cache@v4
31+ env :
32+ cache-name : maven-cache
33+ with :
34+ path :
35+ ~/.m2
36+ key : build-${{ env.cache-name }}
37+ - name : Maven version
38+ run : mvn --version
39+ - name : Build with Maven
40+ run : mvn -T 8 test
41+
You can’t perform that action at this time.
0 commit comments