Skip to content

Commit 0fb71dc

Browse files
authored
Updated ci.yml (#66)
Updated ci.yml to fix the build failure in github actions workflow
1 parent a00085e commit 0fb71dc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ jobs:
1010
steps:
1111
- name: Check-out source code
1212
uses: actions/checkout@v4
13+
14+
- name: Set up JDK 11
15+
uses: actions/setup-java@v4
16+
with:
17+
java-version: '11'
18+
distribution: 'temurin' # Optional, defaults to temurin in v4
19+
20+
- name: Verify Java version
21+
run: java -version
1322

1423
- name: Build
1524
run: ./gradlew build

0 commit comments

Comments
 (0)