fix: 고아 row들 제거하는 마이그레이션 작성, 방어적 백필 로직 추가 #276
Workflow file for this run
This file contains hidden or 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: Run Tests on Pull Request to Develop | |
| on: | |
| pull_request: | |
| branches: [ develop ] | |
| jobs: | |
| test: | |
| name: Test on PR to Develop | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: '21' | |
| - name: Grant execute permission for Gradle | |
| run: chmod +x gradlew | |
| - name: Fix Docker API compatibility for Testcontainers | |
| run: echo 'api.version=1.44' > ~/.docker-java.properties | |
| - name: Run tests | |
| run: ./gradlew test |