Skip to content

Feat [#3] 기본 클래스들 세팅 #6

Feat [#3] 기본 클래스들 세팅

Feat [#3] 기본 클래스들 세팅 #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: create application.yml
run: |
## create application.yml
mkdir ./jaksim/src/main/resources
cd ./jaksim/src/main/resources
# application.yml 파일 생성
touch ./application.yaml
# GitHub-Actions 에서 설정한 값을 application.yaml 파일에 쓰기
echo "${{ secrets.CI_APPLICATION_DEV }}" >> ./application.yaml
# application.yml 파일 확인
cat ./application.yaml
shell: bash
- name: build
run: |
cd ./jaksim
chmod +x gradlew
./gradlew build -x test
shell: bash