Skip to content

Commit d9afcab

Browse files
committedFeb 26, 2022
Add git action for app build
1 parent ebb734a commit d9afcab

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎.github/workflows/app-build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Android Build
2+
3+
on: [ push ]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: set up JDK 11
11+
uses: actions/setup-java@v2
12+
with:
13+
distribution: adopt
14+
java-version: 11
15+
- name: Build with Gradle
16+
run: ./gradlew build

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.iml
22
.gradle
3+
.idea
34
/local.properties
45
/.idea/caches
56
/.idea/libraries

0 commit comments

Comments
 (0)