Skip to content

Commit

Permalink
Merge pull request #104 from FreakPeople/#test_ci
Browse files Browse the repository at this point in the history
test: ci_test
  • Loading branch information
Jeongjjuna authored Jun 28, 2024
2 parents 4fcea57 + 0944e0c commit 577b082
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,22 @@ on:
- develop

jobs:
Run_Test:
Run Test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: java setup
uses: actions/setup-java@v4
uses: actions/setup-java@v2
with:
distribution: 'temurin'
distribution: 'corretto'
java-version: '21'

- name: setup application.yaml
run: |
mkdir -p src/test/resources
echo "${{ secrets.APPLICATION_TEST_YML }}" | base64 --decode > src/test/resources/application.yml
find src
- name: setup docker-compose.yaml
run: |
Expand All @@ -35,4 +34,24 @@ jobs:
run: chmod +x ./gradlew

- name: run test
run: ./gradlew clean test
- run: ./gradlew clean test




















0 comments on commit 577b082

Please sign in to comment.