mirror of
https://github.com/bitwarden/android.git
synced 2024-11-25 02:46:00 +03:00
Omit fdroid debug tests and select the standard flavor by default (#446)
This commit is contained in:
parent
f528376c66
commit
e31febb1c4
2 changed files with 2 additions and 1 deletions
2
.github/workflows/run-check.yml
vendored
2
.github/workflows/run-check.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
- name: Build and Run Check
|
||||
# Run checks while excluding release-build tests, which are not configured to work properly
|
||||
# with the Compose testing library.
|
||||
run: ./gradlew check -x testStandardRelease -x testFdroidRelease koverXmlReportStandardDebug
|
||||
run: ./gradlew check -x testStandardRelease -x testFdroidDebug -x testFdroidRelease koverXmlReportStandardDebug
|
||||
|
||||
- name: Danger
|
||||
env:
|
||||
|
|
|
@ -53,6 +53,7 @@ android {
|
|||
flavorDimensions += listOf("mode")
|
||||
productFlavors {
|
||||
create("standard") {
|
||||
isDefault = true
|
||||
dimension = "mode"
|
||||
}
|
||||
create("fdroid") {
|
||||
|
|
Loading…
Reference in a new issue