-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 923 Bytes
/
DEV-CI.yml
File metadata and controls
39 lines (33 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: DEV-CI
on:
pull_request:
branches: [ "develop" ]
jobs:
build-and-test:
runs-on: ubuntu-24.04
steps:
# 1. 코드 체크아웃
- name: Checkout
uses: actions/checkout@v3
# 2. JDK 21 설정
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
# 3. Gradle 캐싱 (빌드 속도 향상)
- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# 4. Gradle 빌드 및 테스트 실행
- name: Build and Test with Gradle
run: |
chmod +x gradlew
./gradlew build
shell: bash