[fix] 최신 여행 후기 totalCount 조회에서 여행 후기id에 따라 개수 변화 기능 수정 #222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: [ "main", "develop" ] | |
permissions: | |
contents: read | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
name: Build and test project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'oracle' | |
- name: Make env file | |
run: | | |
echo "${{ secrets.ENV }}" | base64 --decode > .env | |
- name: Make docker-compose file | |
run: | | |
echo "\n" >> ./docker-compose.yml | |
echo "${{ secrets.DOCKER_COMPOSE }}" | base64 --decode >> ./docker-compose.yml | |
echo "\n" >> ./docker-compose.yml | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build -x test | |
- name: Publish result of unit test | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: "**/build/test-results/test/TEST-*.xml" | |
github_token: ${{ github.token }} | |
- name: Publish failure of unit test | |
uses: mikepenz/action-junit-report@v3 | |
if: always() | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ github.token }} |