mirror of
https://github.com/dzeiocom/OpenHealth.git
synced 2025-05-21 08:09:55 +00:00
34 lines
667 B
YAML
34 lines
667 B
YAML
name: Android CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: set up JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'adopt'
|
|
cache: gradle
|
|
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
- name: Build with Gradle
|
|
run: ./gradlew build
|
|
|
|
- name: ktlint
|
|
uses: ScaCap/action-ktlint@master
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
android: true
|
|
reporter: github-pr-review # Change reporter
|