Skip to content

Commit

Permalink
Create CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 authored Jun 24, 2024
1 parent 26dff26 commit 9e7bcb0
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

on:
pull_request:
branches: [ "develop" ]

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 ./src/main/resources
cd ./src/main/resources
# application.yml 파일 생성
# touch ./application.yml
# GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기
# echo "${{ secrets.CI_APPLICATION }}" >> ./application.yml
# application.yml 파일 확인
cat ./application.yml
shell: bash

- name: build
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash

0 comments on commit 9e7bcb0

Please sign in to comment.