Skip to content

Commit c0d1f34

Browse files
committed
Update GitHub workflows | Patch 1
1 parent ccb4c0b commit c0d1f34

File tree

2 files changed

+28
-39
lines changed

2 files changed

+28
-39
lines changed

.github/workflows/android_test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: AndroidTest
2+
3+
on:
4+
pull_request :
5+
branches : [ master ]
6+
push :
7+
branches : [ master ]
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

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)