mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-18 07:24:11 +01:00
WIP: feature/abstractions (#45)
* Abstraction layer backup * Removed DataEntity, was unnecessary for now * Separated network, persistence, entities and interaction, closes #29 * Renamed binding * Removed build files, example tests Removed build files, example tests * Fixed build files were not being ignored all around app * Updated CI ymls * Small changes * Fixed legacy repository package names * Fixed CQ findings * Updated Fastlane * Packaging changes and version upgrades * Removed core from interactors * Version bumps * Added new module graph
This commit is contained in:
30
.github/workflows/android.yml
vendored
30
.github/workflows/android.yml
vendored
@@ -55,8 +55,32 @@ jobs:
|
||||
./gradlew features:detail:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
- name: Test Repository
|
||||
- name: Test Abstractions
|
||||
run: |
|
||||
fastlane test_repository
|
||||
./gradlew repository:jacocoTestReport
|
||||
fastlane test_abstractions
|
||||
./gradlew abstractions:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
- name: Test Definitions
|
||||
run: |
|
||||
fastlane test_definitions
|
||||
./gradlew data:definitions:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
- name: Test Interactors
|
||||
run: |
|
||||
fastlane test_interactors
|
||||
./gradlew data:interactors:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
- name: Test Network
|
||||
run: |
|
||||
fastlane test_network
|
||||
./gradlew data:network:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
- name: Test Persistence
|
||||
run: |
|
||||
fastlane test_persistence
|
||||
./gradlew data:persistence:jacocoTestReport
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
Reference in New Issue
Block a user