Update plugin com.google.dagger.hilt.android to v2.52 #224
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: Gradle checks | |
env: | |
cache-name: android-gradle | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
setup: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble with Gradle | |
run: ./gradlew jar --no-daemon | |
unit-tests: | |
needs: setup | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble | |
run: ./gradlew randomgenkt:assemble randomgenkt.datasource:assemble | |
- name: Publish to local maven | |
run: ./gradlew randomgenkt:publishToMavenLocal randomgenkt.datasource:publishToMavenLocal | |
- name: Run unit tests | |
run: ./gradlew test | |
lint: | |
needs: setup | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble | |
run: ./gradlew randomgenkt:assemble randomgenkt.datasource:assemble | |
- name: Publish to local maven | |
run: ./gradlew randomgenkt:publishToMavenLocal randomgenkt.datasource:publishToMavenLocal | |
- name: Run lint | |
run: ./gradlew lint --no-daemon |