[FIX] 전화번호 랜덤 생성되게 하여 중복 방지 #172
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: Testing | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Make application.yml | |
run: | | |
export SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} | |
mkdir -p src/main/resources | |
echo "${{ secrets.TEST_PROPERTIES }}" > src/main/resources/application.yml | |
- name: Run tests | |
run: | | |
./gradlew test |