Skip to content

Commit

Permalink
fix : test.yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zomeong committed Jan 15, 2024
1 parent 2e1e0aa commit 7aebacc
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
permissions: write-all

jobs:
test:
build:
runs-on: ubuntu-latest

env:
Expand All @@ -25,13 +25,13 @@ jobs:
NAVER_API_SECRET: ${{ secrets.NAVER_API_SECRET }}

steps:
- name: Run chmod to make gradlew executable
uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Run chmod to make gradlew executable

- name: Java Setup
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 17
java-version: '17'

- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand All @@ -49,10 +49,4 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v1
if: ${{ always() }}
with:
files: build/test-results/**/*.xml

- name: Cleanup Gradle Cache
if: ${{ always() }}
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
files: build/test-results/**/*.xml

0 comments on commit 7aebacc

Please sign in to comment.