We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7aa05e + 1fab1d9 commit f39b825Copy full SHA for f39b825
1 file changed
.github/workflows/AdnroidApplicationTests.yaml
@@ -0,0 +1,39 @@
1
+name: Android Automatic Testing
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: set up JDK
15
+ uses: actions/setup-java@v4
16
+ with:
17
+ java-version: '21'
18
+ distribution: 'adopt'
19
+ cache: gradle
20
+ - name: Grant execute permission for gradlew
21
+ run: chmod +x gradlew
22
+ - name: Build with Gradle
23
+ run: ./gradlew build
24
25
+ unitTest:
26
+ name: Unit Testing
27
28
29
30
31
32
+ - name: Setup JVM
33
34
35
36
37
38
+ - name: Unit Testing
39
+ run: ./gradlew test
0 commit comments