Skip to content

[BLOOM-124] 모니터링용 prometheus, loki4j 의존성 추가 및 설정 #261

[BLOOM-124] 모니터링용 prometheus, loki4j 의존성 추가 및 설정

[BLOOM-124] 모니터링용 prometheus, loki4j 의존성 추가 및 설정 #261

Workflow file for this run

name: Blooming CI
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle