File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : JDK EA Stable
3
+
4
+ on :
5
+ push :
6
+ pull_request :
7
+ workflow_dispatch :
8
+ schedule :
9
+ - cron : ' 39 1 * * 1,3,5'
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ permissions :
15
+ contents : read
16
+ packages : write
17
+
18
+ steps :
19
+ - uses : actions/checkout@v3
20
+ - name : Set up Java
21
+ uses : oracle-actions/setup-java@v1
22
+ with :
23
+ website : jdk.java.net
24
+ release : ea
25
+ version : stable
26
+ - name : Maven cache
27
+ uses : actions/cache@v3
28
+ env :
29
+ cache-name : maven-cache
30
+ with :
31
+ path :
32
+ ~/.m2
33
+ key : build-${{ env.cache-name }}
34
+ - name : Maven version
35
+ run : mvn --version
36
+ - name : Build with Maven
37
+ run : mvn clean verify package -Ptest
Original file line number Diff line number Diff line change 2
2
name : avaje-http EA
3
3
4
4
on :
5
+ pull_request :
5
6
workflow_dispatch :
6
7
schedule :
7
8
- cron : ' 39 1 * * 2,5'
You can’t perform that action at this time.
0 commit comments