Merge pull request #175 from hossain-khan/renovate/corektx #145
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: Post Merge Check | |
# Run extra build and checks to ensure `main` is functioning right. | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
android-post-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: gradle | |
# Automatic gradle caching using `actions/cache@v4` | |
# https://github.com/gradle/actions/tree/main/setup-gradle | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run Linter | |
run: ./gradlew lint | |
- name: Build with Gradle | |
run: ./gradlew build |