Skip to content

Commit e4728a8

Browse files
committed
Create gradlew.build
1 parent 3904d88 commit e4728a8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/gradlew.build

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Android CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up JDK
14+
uses: actions/setup-java@v2
15+
with:
16+
java-version: '11'
17+
18+
- name: Build with Gradle
19+
run: ./gradlew build
20+
21+
- name: Upload build artifacts
22+
uses: actions/upload-artifact@v2
23+
with:
24+
name: build-artifacts
25+
path: path/to/artifacts

0 commit comments

Comments
 (0)