Update plugin org.sonarqube to v4.3.1.3277 #2738
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: π¨ Gradle Build | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- 'fastlane/**' | |
- '*.md' | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Add exec permission | |
run: chmod +x gradlew | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: π¨ Build | |
run: ./gradlew build | |
- name: π¬ Upload Lint report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lint-results.html | |
path: app/build/reports/lint-results*.html | |
- name: π¬ Upload tests report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: reports-tests | |
path: app/build/reports/tests/ |