File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : avaje-inject 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
+
14
+ runs-on : ${{ matrix.os }}
15
+ permissions :
16
+ contents : read
17
+ packages : write
18
+ # strategy:
19
+ # fail-fast: false
20
+ # matrix:
21
+ # java_version: [GA,EA] ## valhalla (fails javadoc)
22
+ # os: [ubuntu-latest]
23
+
24
+ steps :
25
+ - uses : actions/checkout@v3
26
+ - name : Set up Java
27
+ uses : oracle-actions/setup-java@v1
28
+ with :
29
+ website : jdk.java.net
30
+ release : ea
31
+ version : stable
32
+ - name : Maven cache
33
+ uses : actions/cache@v3
34
+ env :
35
+ cache-name : maven-cache
36
+ with :
37
+ path :
38
+ ~/.m2
39
+ key : build-${{ env.cache-name }}
40
+ - name : Maven version
41
+ run : mvn --version
42
+ - name : Build with Maven
43
+ run : mvn package
44
+
You can’t perform that action at this time.
0 commit comments