Skip to content

Commit 34a45bd

Browse files
authored
Add CI (#3)
1 parent 6f293db commit 34a45bd

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This is a comment.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# These owners will be the default owners for everything in
5+
# the repo. Unless a later match takes precedence,
6+
# @global-owner1 and @global-owner2 will be requested for
7+
# review when someone opens a pull request.
8+
* @mohsenoid

.github/workflows/android.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Android CI
2+
3+
concurrency:
4+
group: ${{ github.head_ref }}
5+
cancel-in-progress: true
6+
7+
on: [ push, pull_request ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
timeout-minutes: 20
14+
15+
steps:
16+
- name: Checkout repo
17+
uses: actions/checkout@v1
18+
19+
- name: Set up JDK 17
20+
uses: actions/setup-java@v3
21+
with:
22+
distribution: 'adopt'
23+
java-version: 17
24+
25+
- name: Test and Build
26+
run: ./gradlew build

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)