security: pin GitHub Actions to SHA hashes #56
Workflow file for this run
This file contains hidden or 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 CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| lint: | |
| name: Spotless check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3.1.0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3.5.1 | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - name: spotless | |
| run: ./gradlew spotlessCheck | |
| test: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3.1.0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3.5.1 | |
| with: | |
| distribution: zulu | |
| java-version: 17 | |
| - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 | |
| - name: Make Gradle executable | |
| run: chmod +x ./gradlew | |
| - name: Run unit tests | |
| run: ./gradlew testDebugUnitTest --stacktrace | |
| - name: Upload test reports | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-reports | |
| path: | | |
| **/build/reports/tests/ | |
| **/build/test-results/ | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: zulu | |
| java-version: 17 | |
| - uses: gradle/gradle-build-action@243af859f8ca30903d9d7f7936897ca0358ba691 # v2.7.1 | |
| - name: Make Gradle executable | |
| run: chmod +x ./gradlew | |
| - name: Build with Gradle | |
| run: | | |
| ./gradlew --scan --stacktrace \ | |
| :app:assembleDebug |