mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 15:16:56 +00:00
fix #1539: checkstyle in data module & jobs for network, model module
This commit is contained in:
parent
b2156170ce
commit
bdec63fc7d
12
.github/workflows/master_dev_ci.yml
vendored
12
.github/workflows/master_dev_ci.yml
vendored
@ -113,6 +113,12 @@ jobs:
|
||||
- name: Static Analysis[Core:Common]
|
||||
run: ./gradlew core:common:pmd
|
||||
|
||||
- name: Static Analysis[Core:Network]
|
||||
run: ./gradlew core:network:pmd
|
||||
|
||||
- name: Static Analysis[Core:Model]
|
||||
run: ./gradlew core:model:pmd
|
||||
|
||||
- name: Static Analysis[Feature:Auth]
|
||||
run: ./gradlew feature:auth:pmd
|
||||
|
||||
@ -151,5 +157,11 @@ jobs:
|
||||
- name: Static Analysis[Core:Common]
|
||||
run: ./gradlew core:common:checkstyle
|
||||
|
||||
- name: Static Analysis[Core:Network]
|
||||
run: ./gradlew core:network:checkstyle
|
||||
|
||||
- name: Static Analysis[Core:Model]
|
||||
run: ./gradlew core:model:checkstyle
|
||||
|
||||
- name: Static Analysis[Feature:Auth]
|
||||
run: ./gradlew feature:auth:checkstyle
|
||||
@ -28,7 +28,7 @@
|
||||
<!-- General Code Style -->
|
||||
|
||||
<module name="LineLength">
|
||||
<property name="max" value="100"/>
|
||||
<property name="max" value="120"/>
|
||||
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
|
||||
</module>
|
||||
|
||||
|
||||
@ -8,6 +8,8 @@ android {
|
||||
namespace = "org.mifos.mobilewallet.core.model"
|
||||
}
|
||||
|
||||
apply(from = "${project.rootDir}/config/quality/quality.gradle")
|
||||
|
||||
dependencies {
|
||||
api(libs.kotlinx.datetime)
|
||||
implementation(libs.jetbrains.kotlin.jdk7)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user