#332 [feat] 메트릭 API 기간 입력 요구사항 반영 #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: ASAP CI | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
redis-version: [6, 7] | |
steps: | |
- name: Setup MySQL | |
uses: mirromutth/mysql-action@v1 | |
with: | |
mysql root password: 'asap' | |
mysql user: 'asap' | |
mysql password: 'asap' | |
host port: 3306 | |
container port: 3306 | |
- name: Set up redis | |
uses: supercharge/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: make application.properties 파일 생성 | |
run: | | |
## create application.yml | |
rm -r ./src/main/resources | |
mkdir ./src/main/resources | |
cd ./src/main/resources | |
# application.yml 파일 생성 | |
touch ./application.yml | |
# GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기 | |
echo "${{ secrets.DEV_APPLICATION_YAML }}" >> ./application.yml | |
# application.yml 파일 확인 | |
cat ./application.yml | |
shell: bash | |
# 이 워크플로우는 gradle build | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Wait for MySQL | |
run: | | |
while ! mysqladmin ping --host=127.0.0.1 --password='asap' --silent; do | |
sleep 1 | |
done | |
- name: Build with Gradle # 실제 application build | |
run: ./gradlew clean build |