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 efb8ce5 commit 3807e7fCopy full SHA for 3807e7f
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+
2
+name: Java CI with Bash
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
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: get code
21
+ uses: actions/checkout@v5
22
23
+ - name: Set up JDK 25
24
+ uses: actions/setup-java@v5
25
+ with:
26
+ distribution: 'zulu'
27
+ java-version: '25'
28
29
+ - name: run build script
30
+ run: ./build-all.sh
0 commit comments