Feature/#227 세션 상세 남은 작업 및 기타 작업 #177
Workflow file for this run
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: Android CI Action | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| permissions: write-all | |
| jobs: | |
| ready_to_ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| clean: true | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| ci_dev: | |
| needs: ready_to_ci | |
| uses: ./.github/workflows/build_check.yml | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| strategy: | |
| matrix: | |
| include: | |
| - name: test | |
| command: "./gradlew clean testDebugUnitTest" | |
| - name: build | |
| command: "./gradlew app:assembleDebug" |