DEADSOFTWARE

Update README
[cavedroid.git] / .github / workflows / android.yml
1 name: Android CI
3 on:
4 push:
5 branches: [ "master" ]
6 pull_request:
7 branches: [ "master" ]
9 jobs:
10 build:
12 runs-on: ubuntu-latest
14 steps:
15 - uses: actions/checkout@v3
16 - name: set up JDK 17
17 uses: actions/setup-java@v3
18 with:
19 java-version: '17'
20 distribution: 'temurin'
21 cache: gradle
23 - name: mock keystore.properties
24 run: echo "releaseKeystorePath=mock" > keystore.properties
25 - name: Grant execute permission for gradlew
26 run: chmod +x gradlew
27 - name: Build with Gradle
28 run: ./gradlew android:buildDebug