[TEST] 작품 알림 변경 반영 노티피케이션 API 테스트 및 문서화 #254
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
| # workflow 이름: CI-develop | |
| name: CI-develop | |
| # trigger: dev 브랜치에 PR 발생할 때 | |
| on: | |
| pull_request: | |
| branches: [ "dev" ] | |
| # workflow의 세부 작업 단위 job 정의 | |
| jobs: | |
| build-develop: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.ACTION_TOKEN }} | |
| submodules: true | |
| fetch-depth: 0 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: '17' | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| shell: bash | |
| - name: Build with Gradle | |
| env: | |
| DEV_DB_NAME: ${{ secrets.DEV_DB_NAME }} | |
| DEV_DB_PWD: ${{ secrets.DEV_DB_PWD }} | |
| APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
| DEV_APPLE_KEY_NAME: ${{ secrets.DEV_APPLE_KEY_NAME }} | |
| S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
| S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
| run: ./gradlew build -x test | |
| shell: bash |