Skip to content

Update

Update #1987

Workflow file for this run

name: Android lint
on:
push:
branches:
- master
pull_request:
merge_group:
jobs:
lint:
name: Run Lint
runs-on: macos-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

Check failure on line 18 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
cache: gradle
- name: Run Kotlin lint
run: ./gradlew :app:detekt
# - name: Run Android Lint
# run: ./gradlew :app:lintAnalyticsDebug