We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9cf13 commit 3af408dCopy full SHA for 3af408d
1 file changed
.github/workflows/CI.yml
@@ -0,0 +1,20 @@
1
+name: Android CI
2
+on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: set up JDK 11
12
+ uses: actions/setup-java@v5
13
+ with:
14
+ java-version: '17'
15
+ distribution: 'oracle'
16
+ cache: gradle
17
+ - name: Grant execute permission for gradlew
18
+ run: chmod +x gradlew
19
+ - name: Build with Gradle
20
+ run: ./gradlew assembleDebug
0 commit comments