Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Ktlint Check
run: ./gradlew ktlintCheck
- name: Run unit tests with Gradle
run: ./gradlew test
- name: Build with Gradle
run: ./gradlew build
- name: Upload APK as artifact
uses: actions/upload-artifact@v4
with:
name: qed-camera-apk
path: app/build/outputs/apk/debug/app-debug.apk