Skip to content
This repository was archived by the owner on Sep 9, 2026. It is now read-only.

Commit 3a79ae5

Browse files
committed
ci: create CI
1 parent b06a2f9 commit 3a79ae5

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

‎.github/workflows/ci.yml‎

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
test:
8+
name: Build and Test
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v7
14+
15+
- name: Set up JDK
16+
uses: actions/setup-java@v5
17+
with:
18+
distribution: 'temurin'
19+
java-version: '26'
20+
cache: 'maven'
21+
22+
- name: Run tests
23+
run: mvn -B test

0 commit comments

Comments
 (0)