Skip to content

Commit f8bf561

Browse files
authored
ea-workflow
1 parent 63aec85 commit f8bf561

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/jdk-ea.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
name: avaje-config EA
3+
4+
on:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '48 0 * * 6'
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: [GA,EA]
20+
os: [ubuntu-latest]
21+
22+
steps:
23+
- uses: actions/checkout@v3
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@v3
31+
env:
32+
cache-name: maven-cache
33+
with:
34+
path:
35+
~/.m2
36+
key: build-${{ env.cache-name }}
37+
- name: Build with Maven
38+
run: mvn clean test
39+

0 commit comments

Comments
 (0)