Skip to content

chore: set up android project #3

chore: set up android project

chore: set up android project #3

Workflow file for this run

name: CI Android
on:
pull_request:
branches:
- main
paths:
- "android/**"
defaults:
run:
working-directory: ./android
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Run lint
run: ./gradlew lint