plectrum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit e3bc2a4ed66b8a54382f7b9306b3ea8fe3765cc3
parent 48bc153bbfafcb5631c706b4dbab3f021c2f1add
Author: gstraube <gstraube@users.noreply.github.com>
Date:   Sat, 20 Jan 2024 11:42:58 +0100

Create android.yml
Diffstat:
A.github/workflows/android.yml | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -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@v3 + - name: set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build