Skip to content

[BG-250]: 이벤트 알림 리스트 조회 (3h / 3h) #69

[BG-250]: 이벤트 알림 리스트 조회 (3h / 3h)

[BG-250]: 이벤트 알림 리스트 조회 (3h / 3h) #69

Workflow file for this run

name: 'CI'
on:
pull_request:
branches:
- 'main'
- 'develop'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Cache Gradle packages
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run tests
run: ./gradlew test