Skip to content

feat: Initial Commit #4

feat: Initial Commit

feat: Initial Commit #4

Workflow file for this run

name: Android Dev Build
on:
pull_request:
branches: [ develop ]
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run unit tests
run: ./gradlew test