kw-mobile-library-pr-checks #1
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: kw-mobile-library-pr-checks | |
run-name: kw-mobile-library-pr-checks | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
install-and-cache-deps: | |
runs-on: ubuntu-latest | |
if: github.event.issue.pull_request && github.event.comment.body == '/test' | |
timeout-minutes: 20 | |
steps: | |
- name: Get Pull Request (PR) Branch | |
uses: xt0rted/pull-request-comment-branch@v2 | |
id: comment-branch | |
- name: Checkout Pull Request (PR) Branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ steps.comment-branch.outputs.head_ref }} | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
if: steps.cacheHomedirCache.outputs.cache-hit != 'true' | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle (with save/restore of Gradle cache) | |
# see: https://docs.gradle.org/current/userguide/github-actions.html | |
# see: https://github.com/gradle/gradle-build-action | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: wrapper | |
cache-read-only: false # by default, cache writes are allowed only by jobs on the default (main) branch | |
library-format-static-analysis-unit-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: install-and-cache-deps | |
if: github.event.issue.pull_request && github.event.comment.body == '/test' | |
steps: | |
- name: Get Pull Request (PR) Branch | |
uses: xt0rted/pull-request-comment-branch@v2 | |
id: comment-branch | |
- name: Checkout PR branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ steps.comment-branch.outputs.head_ref }} | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle (with save/restore of Gradle cache) | |
# see: https://docs.gradle.org/current/userguide/github-actions.html | |
# see: https://github.com/gradle/gradle-build-action | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: wrapper | |
cache-read-only: false # by default, cache writes are allowed only by jobs on the default (main) branch | |
- name: Run Gradle targets for the Library tasks | |
run: | | |
./scripts/ci/kw-mobile-lib-format-static-analysis-unit-test.sh |