Skip to content

Commit

Permalink
chore: validate-test 액션 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Aug 8, 2024
1 parent d940561 commit b03c32a
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/validate-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}

jobs:
validate-test:
setup-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -36,7 +36,7 @@ jobs:
run: |
./gradlew jooqCodegenAll
- name: Jooq Cache
- name: Cache Jooq
uses: actions/cache@v3
with:
path: |
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Jooq Cache
- name: Cache Jooq
uses: actions/cache@v3
with:
path: |
Expand Down Expand Up @@ -106,14 +106,12 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Jooq Cache
- name: Cache Jooq
uses: actions/cache@v3
with:
path: |
./api-repo/src/generated
./api-repo/src/main/resources/db/migration
./batch/src/generated
./batch/src/main/resources/db/migration
key: ${{ runner.os }}-jooq-${{ hashFiles('./api-repo/src/generated/**', './api-repo/src/main/resources/db/migration/**', './batch/src/generated/**', './batch/src/main/resources/db/migration/**') }}
restore-keys: |
${{ runner.os }}-jooq-
Expand Down Expand Up @@ -143,12 +141,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Jooq Cache
- name: Cache Jooq
uses: actions/cache@v3
with:
path: |
./api-repo/src/generated
./api-repo/src/main/resources/db/migration
./batch/src/generated
./batch/src/main/resources/db/migration
key: ${{ runner.os }}-jooq-${{ hashFiles('./api-repo/src/generated/**', './api-repo/src/main/resources/db/migration/**', './batch/src/generated/**', './batch/src/main/resources/db/migration/**') }}
Expand Down

0 comments on commit b03c32a

Please sign in to comment.