9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 10:39:07 +00:00

Create gradlebuild.yml

This commit is contained in:
Dan
2021-08-19 07:06:10 -04:00
committed by GitHub
parent ebeaad0b4e
commit de5ce2660d

25
.github/workflows/gradlebuild.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
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 16
uses: actions/setup-java@v2
with:
java-version: '16'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build