Skip to content

Commit 3807e7f

Browse files
committed
incremental update Thu 18 Sep 2025 22:06:36 ADT
1 parent efb8ce5 commit 3807e7f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches: [ "main" ]
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

Comments
 (0)