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 779516f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
- name: set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 17
- name: grant permissions to gradlew
run: chmod +x gradlew
- name: Build with Gradle
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 779516f

Please sign in to comment.