Skip to content

Commit 0d73cf4

Browse files
committed
♻️Refactor: cd 파일 수정
1 parent 5826a72 commit 0d73cf4

2 files changed

Lines changed: 46 additions & 1 deletion

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020

2121
# 2. 서브모듈 초기화
2222
- name: Update submodule
23+
# 서브모듈을 초기화하고 최신 상태로 가져옴
2324
run: git submodule update --init --recursive
2425

2526
# 3. JDK 21 설정
@@ -36,7 +37,7 @@ jobs:
3637
# 5. Gradle로 빌드 (bootJar 생성)
3738
- name: Build with Gradle
3839
run: |
39-
./gradlew clean bootjar -Pprofile=dev
40+
./gradlew clean bootjar -Pprofile=prod
4041
4142
# 6. Docker Hub 로그인
4243
- name: Log in to Docker Hub

qodana.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#-------------------------------------------------------------------------------#
2+
# Qodana analysis is configured by qodana.yaml file #
3+
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
4+
#-------------------------------------------------------------------------------#
5+
version: "1.0"
6+
7+
#Specify inspection profile for code analysis
8+
profile:
9+
name: qodana.starter
10+
11+
#Enable inspections
12+
#include:
13+
# - name: <SomeEnabledInspectionId>
14+
15+
#Disable inspections
16+
#exclude:
17+
# - name: <SomeDisabledInspectionId>
18+
# paths:
19+
# - <path/where/not/run/inspection>
20+
21+
projectJDK: "21" #(Applied in CI/CD pipeline)
22+
23+
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
24+
#bootstrap: sh ./prepare-qodana.sh
25+
26+
#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
27+
#plugins:
28+
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
29+
30+
# Quality gate. Will fail the CI/CD pipeline if any condition is not met
31+
# severityThresholds - configures maximum thresholds for different problem severities
32+
# testCoverageThresholds - configures minimum code coverage on a whole project and newly added code
33+
# Code Coverage is available in Ultimate and Ultimate Plus plans
34+
#failureConditions:
35+
# severityThresholds:
36+
# any: 15
37+
# critical: 5
38+
# testCoverageThresholds:
39+
# fresh: 70
40+
# total: 50
41+
42+
#Qodana supports other languages, for example, Python, JavaScript, TypeScript, Go, C#, PHP
43+
#For all supported languages see https://www.jetbrains.com/help/qodana/linters.html
44+
linter: jetbrains/qodana-jvm-community:2025.2

0 commit comments

Comments
 (0)