fix bug: reverse lat & lng in NavigationUIActivity sample #100
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 |