Skip to content

Deeplink notification (#90) #58

Deeplink notification (#90)

Deeplink notification (#90) #58

Workflow file for this run

name: OwlMail Lint Check
on:
push:
branches:
- "*"
- "!profiler*"
# - "main"
# pull_request:
# branches:
# - "*"
# - "!profiler*"
jobs:
lint-check:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Set up Gradle with Cache
uses: gradle/gradle-build-action@v2
- name: Fetch Secrets data
env:
DATA: ${{ secrets.GOOGLE_SERVICES }}
run: echo $DATA > $PWD/app/google-services.json
- name: Lint Check
run: ./gradlew lint --scan
- uses: actions/upload-artifact@v3
with:
name: Lint-Report
path: app/build/reports/lint-results-debug.html