Skip to content

Commit

Permalink
Update pull-request-intergration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YeaChan05 authored Feb 9, 2024
1 parent a2c27b6 commit 4c1fc9a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pull-request-intergration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,12 @@ jobs:
with:
java-version: 17
distribution: 'corretto'
- run: touch ./src/main/resources/application-secret.yml
- run: echo "${{ secrets.SECRET_KEY }}" > ./src/main/resources/application-secret.yml
- run: cat ./src/main/resources/application-secret.yml
- name: Build with Gradle
run: ./gradlew build -x test

test:
needs: [ setup, build ]
runs-on: ubuntu-latest
Expand All @@ -84,6 +87,9 @@ jobs:
with:
java-version: 17
distribution: 'corretto'
- run: touch ./src/main/resources/application-secret.yml
- run: echo "${{ secrets.SECRET_KEY }}" > ./src/main/resources/application-secret.yml
- run: cat ./src/main/resources/application-secret.yml
- name: Test with Gradle
run: ./gradlew test

Expand Down

0 comments on commit 4c1fc9a

Please sign in to comment.