We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17205ca commit 98cbb1dCopy full SHA for 98cbb1d
.github/workflows/android.yml
@@ -0,0 +1,27 @@
1
+
2
+name: Android CI
3
4
+on:
5
+ push:
6
+ branches: [ "main" ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: set up JDK 8
18
+ uses: actions/setup-java@v3
19
+ with:
20
+ java-version: '8'
21
+ distribution: 'temurin'
22
+ cache: gradle
23
24
+ - name: Grant execute permission for gradlew
25
+ run: chmod +x gradlew
26
+ - name: Build with Gradle
27
+ run: ./gradlew build
0 commit comments