File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments