Bump dependencies + AGP 8.1.2, Kotlin 1.9.10 #133
Workflow file for this run
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: Check PR | |
on: [pull_request] | |
jobs: | |
pr: | |
name: PR check | |
runs-on: [ubuntu-latest] | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: '2.6' | |
- name: set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Run LintCheck | |
shell: bash | |
run: ./gradlew detekt ktlintCheck lint assembleRelease | |
- name: Run unit tests | |
shell: bash | |
run: ./gradlew --continue testRelease | |
- name: Danger action | |
uses: MeilCli/danger-action@v2 | |
continue-on-error: true | |
with: | |
plugins_file: 'Gemfile' | |
danger_file: 'Dangerfile' | |
danger_id: 'danger-pr' |