Skip to content

Commit

Permalink
chore: CI 간소화 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitchannn authored Nov 1, 2023
1 parent 4a1f419 commit d06ae4e
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- name: ✔️ 리포지토리 가져오기
uses: actions/checkout@v3
# with:
# token: ${{ secrets.SUBMODULE_TOKEN }}
# submodules: recursive
with:
token: ${{ secrets.SUBMODULE_TOKEN }}
submodules: recursive

- name: ✔️ JDK 17 설치
uses: actions/setup-java@v3
Expand All @@ -28,16 +28,3 @@ jobs:

- name: ✔️ Gradle build
run: ./gradlew build

- name: ✔️ 테스트 결과를 PR에 코멘트로 등록
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: '**/build/test-results/test/TEST-*.xml'

- name: ✔️ 테스트 실패 시, 실패한 코드 라인에 Check 코멘트를 등록
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
token: ${{ github.token }}

0 comments on commit d06ae4e

Please sign in to comment.