fix: 포인트 내역 조회에서 날짜를 String 형식으로 통일해서 다룸 #341
Workflow file for this run
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: PR 빌드 및 테스트 자동화 | |
on: | |
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 submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
token: ${{ secrets.SUBMODULE_TOKEN }} | |
- 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 application.properties | |
run: | | |
echo "${{ secrets.PROPERTIES }}" | base64 --decode > src/main/resources/application.yaml | |
echo "${{ secrets.LOCAL_PROPERTIES }}" | base64 --decode > src/main/resources/application-local.yaml | |
echo "${{ secrets.TEST_PROPERTIES }}" | base64 --decode > src/test/resources/application.yaml | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: build | |
cache-read-only: ${{ github.ref != 'ref/heads/main' && github.ref != 'ref/heads/develop' }} | |
- 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 }} |