Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
winter-yuki committed Aug 21, 2024
1 parent d169964 commit ad6e258
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ class StatsFragment : AbstractFragmentWithHelp(R.string.stats_help) {
}

view.theoryStepsPassed.text = actions.count { it.type is TheoryPassStep }.toString()
view.theoryInputStepsPassed.text = actions.count { it.type is TheoryPassStep && it.type.isInput }.toString()
view.theoryInputStepsPassed.text = actions
.count { it.type is TheoryPassStep && it.type.isInput }
.toString()
}
}

Expand Down
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,3 @@ plugins {
id 'org.jetbrains.kotlin.kapt' version "$kotlin_version" apply false
id 'org.jetbrains.dokka' version "$version_dokka" apply false
}

//tasks.register('clean', Delete) {
// delete rootProject.buildDir
//}

0 comments on commit ad6e258

Please sign in to comment.