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 349715c commit e08338bCopy full SHA for e08338b
.github/workflows/android-unit-tests.yml
@@ -0,0 +1,32 @@
1
+name: Android Unit Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "*"
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v2
18
19
+ - name: Set up JDK 17
20
+ uses: actions/setup-java@v2
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'temurin'
24
25
+ - name: Grant execute permission for gradlew
26
+ run: chmod +x gradlew
27
28
+ - name: Build with Gradle
29
+ run: ./gradlew assembleDebug
30
31
+ - name: Run tests
32
+ run: ./gradlew test
0 commit comments