-
Notifications
You must be signed in to change notification settings - Fork 40
38 lines (31 loc) · 763 Bytes
/
android.yml
File metadata and controls
38 lines (31 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Android CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: set up JDK 21
uses: actions/setup-java@v5
with:
distribution: 'adopt'
java-version: '21'
- name: Gradle Setup
uses: gradle/actions/setup-gradle@v5
with:
cache-cleanup: on-success
cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
- name: Test App Gradle
run: make testApp
- name: Build App Gradle
run: make buildApp
- name: Screenshot Test
run: make screenshotTest
- name: Build Wear Gradle
run: make buildWear