Skip to content

Commit

Permalink
fix: DB url 수정 (#14)
Browse files Browse the repository at this point in the history
* fix: DB url 수정

* fix: CI Test report 경로 수정

* fix: CI trigger 범위 변경

* fix: CI test results 경로 수정

* fix: CI test results 경로 수정

* fix: Test 수행
  • Loading branch information
TaeyeonRoyce authored Jan 24, 2024
1 parent ad80c25 commit 0ceea1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/gradle-CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI With Pull Request

on:
push:
pull_request:
types: [opened, reopened]

Expand All @@ -19,23 +20,17 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
distribution: 'temurin'
cache: 'gradle'

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew

- name: Build JAR
run: ./gradlew bootJar -Dspring.profiles.active=dev
- name: Test
run: ./gradlew test

- name: Generate JUnit test results as a comment
uses: EnricoMi/publish-unit-test-result-action@v2
if: ${{ always() }}
with:
files: '**/build/test-results/**/*.xml'

- name: Registered comments on the failed code line when a test fails.
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
files: '**/build/test-results/test/TEST-*.xml'
2 changes: 1 addition & 1 deletion backend-submodule

0 comments on commit 0ceea1e

Please sign in to comment.