Skip to content

Document: README.MD에 프로젝트 기본 설명 추가 #13

Document: README.MD에 프로젝트 기본 설명 추가

Document: README.MD에 프로젝트 기본 설명 추가 #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set Java 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: make properties directory
run: mkdir -p ./app/src/main/resources/
- name: inject properties yml
run: echo "${{ secrets.APP_PROPS }}" >> ./app/src/main/resources/application.yml
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew test --info