[FIX] DTO 관련 오류 수정 #65
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: Puzzling PR Builder | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Gradle cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# - name: Lint Check | |
# run: ./gradlew ktlintCheck | |
# - name: Build with Gradle | |
# run: ./gradlew buildeRelease | |
# - name: Slack Notification on Failure | |
# uses: rtCamp/action-slack-notify@master | |
# if: failure() | |
# env: | |
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
# SLACK_TITLE: 'Puzzling Android CI checks have failed 🚫' | |
# SLACK_USERNAME: 짱즐링 | |
# SLACK_MESSAGE: 'WHAT THE BUG 🗯' | |
# SLACK_COLOR: danger |