Update androidx.navigation to v2.7.4 #1140
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: Danger | |
on: | |
pull_request: | |
jobs: | |
danger: | |
if: github.head_ref != 'develop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: zulu | |
cache: gradle | |
- name: Setup Ruby | |
uses: actions/[email protected] | |
with: | |
ruby-version: 3.0 | |
- name: Install bundler | |
run: bundle install | |
- name: Run AndroidLint | |
run: ./gradlew lintRelease | |
- name: Run danger | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: bundle exec danger |