Skip to content

Commit 86d1302

Browse files
added github workflows
1 parent 0c7c23f commit 86d1302

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

.github/workflows/catlog-service.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Catlog Service
2+
3+
on:
4+
push:
5+
paths:
6+
- catlog-service/**
7+
branches:
8+
- '**'
9+
10+
jobs:
11+
build:
12+
name: Build
13+
runs-on: ubuntu-latest
14+
env:
15+
working-directory: ./catlog-service
16+
defaults:
17+
run:
18+
working-directory: ${{ env.working-directory }}
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Setup Oracle JDK 21
23+
uses: actions/setup-java@v4
24+
with:
25+
java-version: '21'
26+
distribution: 'oracle'
27+
cache: 'maven'
28+
29+
- name: Build with Maven
30+
run: ./mvnw -ntp verify

.idea/workspace.xml

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.sdkmanrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
java=21.0.1-tem
1+
java=21.0.1-oracle
22
maven=3.9.9

0 commit comments

Comments
 (0)