1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-04-24 03:42:13 +00:00

Create build.yml

This commit is contained in:
Florian Bouillon 2021-12-20 15:28:54 +01:00 committed by GitHub
parent 4d901f8a51
commit 26265dd6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,26 @@
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