Skip to content

Commit c965485

Browse files
dfa1claude
andcommitted
ci: add GitHub Actions workflow with Azul Zulu JDK 25 on Ubuntu
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d6be703 commit c965485

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Azul Zulu JDK 25
17+
uses: actions/setup-java@v4
18+
with:
19+
distribution: zulu
20+
java-version: '25'
21+
22+
- name: Install flatbuffers and protobuf
23+
run: sudo apt-get install -y flatbuffers-compiler protobuf-compiler
24+
25+
- name: Build and test
26+
run: ./mvnw verify

0 commit comments

Comments
 (0)