Skip calculating step distance when too far away from the step (#75) #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Run tests" | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Gradle # TODO cache | |
uses: gradle/[email protected] | |
with: | |
gradle-version: current | |
wrapper-cache-enabled: true | |
dependencies-cache-enabled: true | |
configuration-cache-enabled: true | |
# TODO Lint currently fails | |
#- name: Run lint checks | |
# run: ./gradlew libandroid-navigation:lint | |
- name: Run Unit Tests | |
run: ./gradlew libandroid-navigation:test |