mirror of
https://github.com/bitwarden/android.git
synced 2025-02-18 04:50:01 +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
|
- name: Build and Run Check
|
||||||
# Run checks while excluding release-build tests, which are not configured to work properly
|
# Run checks while excluding release-build tests, which are not configured to work properly
|
||||||
# with the Compose testing library.
|
# 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
|
- name: Danger
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -53,6 +53,7 @@ android {
|
||||||
flavorDimensions += listOf("mode")
|
flavorDimensions += listOf("mode")
|
||||||
productFlavors {
|
productFlavors {
|
||||||
create("standard") {
|
create("standard") {
|
||||||
|
isDefault = true
|
||||||
dimension = "mode"
|
dimension = "mode"
|
||||||
}
|
}
|
||||||
create("fdroid") {
|
create("fdroid") {
|
||||||
|
|
Loading…
Add table
Reference in a new issue