Running static code analysis and unit tests #22
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: PR checks | |
run-name: Running static code analysis and unit tests | |
on: | |
push: | |
branches: | |
- "dev" | |
pull_request: | |
branches: | |
- "dev" | |
- "releases/**" | |
jobs: | |
static-analysis-check: | |
name: Static code analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set up JDK 17" | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: "Run static analysis" | |
run: ./gradlew detektAll mergeLintSarif | |
continue-on-error: false | |
- name: "Upload Detkt sarif results" | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: build/reports/detekt/detekt.sarif | |
category: detekt | |
- name: "Upload Lint sarif results" | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: build/reports/lint-merged.sarif | |
category: lint | |
run-unit-tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set up JDK 17" | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run unit tests | |
run: ./gradlew testDebugUnitTest --continue | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
report_paths: '**/build/test-results/**/TEST-*.xml' |