Skip to content

fix(deps): update dependency androidx.core:core-ktx to v1.18.0 #131

fix(deps): update dependency androidx.core:core-ktx to v1.18.0

fix(deps): update dependency androidx.core:core-ktx to v1.18.0 #131

Workflow file for this run

name: Run Lint
on:
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '.gitignore'
- 'LICENSE'
- 'docs/**'
- '.github/**'
- '!.github/workflows/**'
- 'renovate.json'
- '.devcontainer/**'
env:
JAVA_VERSION: 17
JAVA_DISTRO: 'temurin'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
- name: Set up gradle
uses: gradle/actions/setup-gradle@v5
- name: Run Lint
run: |
git fetch origin master
./gradlew spotlessCheck