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 08cb2d4 commit ce61af7Copy full SHA for ce61af7
.github/workflows/gradle_build.yml
@@ -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
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