Skip to content

Commit ce61af7

Browse files
committed
attempt Gradle build for GitHub
1 parent 08cb2d4 commit ce61af7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/gradle_build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
name: Java build with Gradle
3+
4+
on:
5+
workflow_dispatch:
6+
push:
7+
branches: [ "main" ]
8+
pull_request:
9+
branches: [ "main" ]
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: get code
20+
uses: actions/checkout@v5
21+
22+
- name: Set up JDK 25
23+
uses: actions/setup-java@v5
24+
with:
25+
distribution: 'zulu'
26+
java-version: '25'
27+
28+
- name: Setup Gradle
29+
uses: gradle/actions/setup-gradle@v4
30+
31+
- name: run build script
32+
run: ./gradle-build-all.sh

0 commit comments

Comments
 (0)