Allow Static Analysis on Pull Requests from Forks (#49) #2
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: Android Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
release: | |
types: [created] | |
jobs: | |
build: | |
name: Build and analyze | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: android-src/KV4PHT | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'zulu' # Alternative distribution options are available | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Gradle packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Build and analyze | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew check --stacktrace | |
- name: 'Prepare Sonar analysis' | |
uses: evaristegalois11/sonar-fork-analysis@v1.2.0 | |
- name: Upload APK | |
if: startsWith(github.ref, 'refs/tags') | |
uses: AButler/upload-release-assets@v3.0 | |
with: | |
files: "android-src/KV4PHT/app/build/outputs/apk/release/app-release-unsigned.apk" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |