Skip to content

Feature/kotlin 2.3.0 #1

Feature/kotlin 2.3.0

Feature/kotlin 2.3.0 #1

Workflow file for this run

name: Test Android Library
on:
push:
branches:
- main # Trigger on push to the main branch
pull_request:
branches: ['main', 'develop']
workflow_dispatch: # Allows manual triggering from the Actions tab
jobs:
publish:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Build Android library
run: ./run_test.sh