Skip to content

Commit dbcf605

Browse files
committed
added build.yml for cicd
1 parent d3f798a commit dbcf605

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-java@v4
17+
18+
with:
19+
distribution: temurin
20+
java-version: 21
21+
22+
- name: Build
23+
24+
run: mvn clean verify

.idea/workspace.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)