Skip to content

Commit 3af408d

Browse files
committed
Add Basic CI
1 parent 7a9cf13 commit 3af408d

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Android CI
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: set up JDK 11
12+
uses: actions/setup-java@v5
13+
with:
14+
java-version: '17'
15+
distribution: 'oracle'
16+
cache: gradle
17+
- name: Grant execute permission for gradlew
18+
run: chmod +x gradlew
19+
- name: Build with Gradle
20+
run: ./gradlew assembleDebug

0 commit comments

Comments
 (0)