We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63aec85 commit f8bf561Copy full SHA for f8bf561
.github/workflows/jdk-ea.yml
@@ -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
34
+ path:
35
+ ~/.m2
36
+ key: build-${{ env.cache-name }}
37
+ - name: Build with Maven
38
+ run: mvn clean test
39
0 commit comments