fix: goal BC computed fields 하드코딩 문서화 및 통합 테스트 추가 (#28) #34
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: Server Module Test | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: [self-hosted, macOS, ARM64] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 25 | |
| run: echo "JAVA_HOME=$(/usr/libexec/java_home -v 25)" >> $GITHUB_ENV | |
| - name: Run tests | |
| run: ./gradlew test | |
| - name: Upload test results | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: test-results | |
| path: build/reports/tests/test/ | |
| retention-days: 7 |