Skip to content

Commit 5a53d57

Browse files
committed
feat(ci-cd): Run tests before building
1 parent 95262e6 commit 5a53d57

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-testing.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ jobs:
1818
java-version: 21
1919
cache: "gradle"
2020

21+
- name: Run tests
22+
run: ./gradlew test
23+
2124
- name: Compile
22-
run: |
23-
./gradlew assembleDebug
25+
run: ./gradlew assembleDebug
2426

2527
- name: Upload APK
2628
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)