We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88e56a0 commit 1ea7e25Copy full SHA for 1ea7e25
.github/workflows/ci.yml
@@ -0,0 +1,34 @@
1
+name: Android CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v3
16
17
+ - name: Set up JDK 17
18
+ uses: actions/setup-java@v3
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: '17'
22
23
+ - name: Cache Gradle packages
24
+ uses: actions/cache@v3
25
26
+ path: |
27
+ ~/.gradle/caches
28
+ ~/.gradle/wrapper/
29
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-gradle-
32
33
+ - name: Build Debug APK
34
+ run: ./gradlew assembleDebug --no-daemon
0 commit comments