-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from shoeone96/feature-ci
Feature ci
- Loading branch information
Showing
3 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Spring Boot Gradle Test Workflow | ||
|
||
on: [ pull_request ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Repository checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup MySQL | ||
uses: mirromutth/[email protected] | ||
with: | ||
mysql database: ${{secrets.TEST_DATABASE}} | ||
mysql user: ${{secrets.TEST_DB_USERNAME}} | ||
mysql password: ${{secrets.TEST_DB_PASSWORD}} | ||
# run 명령어로 schema 만드는 명령어 실행 | ||
run: mysql -u ${{secrets.TEST_DB_USERNAME}} -p=${{secrets.TEST_DB_PASSWORD}} < ../.././mysql/schema.sql | ||
|
||
# java 설치 | ||
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: '17' | ||
distribution: 'liberica' | ||
|
||
# 환경 변수 적용 | ||
- name: Configure application.yaml under test directory | ||
uses: microsoft/variable-substitution@v1 | ||
with: | ||
files: ./src/main/resources/application.yaml | ||
env: | ||
spring.datasource.url: jdbc:mysql://localhost:3306/${{ secrets.TEST_DATABASE }} | ||
spring.datasource.username: ${{ secrets.TEST_DB_USERNAME }} | ||
spring.datasource.password: ${{ secrets.TEST_DB_PASSWORD }} | ||
|
||
# gradle 권한 추가 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
# 프로젝트 빌드 | ||
- name: Build with Gradle | ||
run: ./gradlew clean build | ||
|
||
# 테스트 실행 | ||
- name: Run Tests | ||
run: ./gradlew test |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
spring: | ||
datasource: | ||
driver-class-name: com.mysql.cj.jdbc.Driver | ||
username: root | ||
password: root | ||
url: jdbc:mysql://localhost:3306/ootw | ||
jpa: | ||
hibernate: | ||
ddl-auto: validate | ||
open-in-view: false |