-
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.
- Loading branch information
1 parent
3fa4555
commit 4818b9a
Showing
1 changed file
with
67 additions
and
0 deletions.
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,67 @@ | ||
name: backend-ci | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
paths: | ||
- 'backend/**' | ||
pull_request: | ||
branches: [ "develop" ] | ||
paths: | ||
- 'backend/**' | ||
|
||
defaults: | ||
run: | ||
working-directory: ./backend | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
checks: write | ||
|
||
# needed unless run with comment_mode: off | ||
pull-requests: write | ||
|
||
# only needed for private repository | ||
contents: read | ||
|
||
# only needed for private repository | ||
issues: read | ||
|
||
# required by download step to access artifacts API | ||
actions: read | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
gradle-version: 8.1.1 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle Wrapper | ||
run: ./gradlew build | ||
|
||
- name: 테스트 결과를 PR에 코멘트로 등록합니다 | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: './backend/build/test-results/test/TEST-*.xml' | ||
|
||
|
||
- name: 실패 테스트결과의 원인을 Report 합니다 | ||
uses: mikepenz/action-junit-report@v3 | ||
if: always() | ||
with: | ||
report_paths: './backend/build/test-results/test/TEST-*.xml' | ||
token: ${{ github.token }} |