Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolve failing CI #1119

Merged
merged 5 commits into from
Feb 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
arch: x86_64
script: ./gradlew connectedCheck --info

- name: Generage Jacoco test coverage reports
- name: Generate Jacoco test coverage reports
if: matrix.api-level == 29 # Only generate coverage report on API level 29
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,11 @@ object Dependencies {
// Test dependencies

object AndroidxTest {
const val core = "1.2.0"
const val core = "1.4.0"
const val archCore = "2.1.0"
const val extJunit = "1.1.2"
const val rules = "1.1.0"
const val runner = "1.1.0"
const val extJunit = "1.1.3"
const val rules = "1.4.0"
const val runner = "1.4.0"
const val fragmentVersion = "1.3.6"
}

Expand Down