Skip to content

[FEAT] 네비게이션 기반 구현 및 CI 개선 #13

[FEAT] 네비게이션 기반 구현 및 CI 개선

[FEAT] 네비게이션 기반 구현 및 CI 개선 #13

Workflow file for this run

name: Android CI
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build_and_test:
name: build_and_test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
cache: "gradle"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Unit Tests
run: ./gradlew test
- name: Run lint checks
run: ./gradlew lintDebug
- name: Upload Lint Report Artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: lint-report
path: app/build/reports/lint-results-debug.xml
- name: Build the project
run: ./gradlew assembleDebug