Skip to content

Commit 6885442

Browse files
authored
Create ci-java.yml
1 parent c6fd0f7 commit 6885442

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci-java.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI Java
2+
3+
on:
4+
push:
5+
paths:
6+
- 'api/**'
7+
- '.github/workflows/ci-java.yml'
8+
pull_request:
9+
paths:
10+
- 'api/**'
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
- name: Setup JDK
19+
uses: actions/setup-java@v4
20+
with:
21+
distribution: 'temurin'
22+
java-version: '25'
23+
- name: Build and Test
24+
run: |
25+
cd api
26+
./gradlew clean build test

0 commit comments

Comments
 (0)