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 ccb4c0b commit c0d1f34Copy full SHA for c0d1f34
.github/workflows/android_test.yml
@@ -0,0 +1,28 @@
1
+name: AndroidTest
2
+
3
+on:
4
+ pull_request :
5
+ branches : [ master ]
6
+ push :
7
8
9
+jobs:
10
+ test-feature:
11
+ runs-on: ubuntu-latest
12
13
+ needs: build
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v4.1.0
18
+ - name: Set up JDK 17
19
+ uses: actions/setup-java@v3.13.0
20
+ with:
21
+ distribution: 'adopt'
22
+ java-version: '17'
23
24
+ - name: Grant execute permissions for gradlew
25
+ run: chmod +x ./gradlew
26
27
+ - name: Run Tests with Gradle
28
+ run: ./gradlew test
.github/workflows/build_release.yml
0 commit comments