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 a23f8d5 commit 5ed723bCopy full SHA for 5ed723b
.github/workflows/Java21SetupValidation.yml
@@ -0,0 +1,21 @@
1
+name: Test Java Setup
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * 0'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ setup-java:
10
+ runs-on: ubuntu-latest
11
+ name: Set up JDK
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up JDK
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ distribution: 'adopt'
21
+ java-version: '21'
0 commit comments