File tree 1 file changed +55
-0
lines changed
1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - dev
7
+ - main
8
+ - release/*
9
+
10
+ jobs :
11
+
12
+ tests :
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ # cancel previous jobs
18
+
19
+ with :
20
+ workflows : " ci.yml"
21
+ env :
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
+
24
+ - uses : actions/checkout@v2
25
+
26
+ - name : Set up JDK
27
+ uses : actions/setup-java@v1
28
+ with :
29
+ java-version : 14
30
+
31
+ # formats all Kotlin src files
32
+ - name : ktlint format
33
+ run : ./gradlew formatKotlin
34
+
35
+ # If ktlint generated changes, commit and push those changes.
36
+ - name : commit changes
37
+ uses : stefanzweifel/git-auto-commit-action@v4
38
+ with :
39
+ commit_message : Apply ktlint format
40
+ commit_options : ' --no-verify --signoff'
41
+ push_options : ' --force' # necessary to push if the branch is protected
42
+
43
+ - name : detekt
44
+ run : ./gradlew detekt
45
+
46
+ - name : all tests
47
+ run : ./gradlew test
48
+
49
+ - name : Unit test results
50
+ uses : mikepenz/action-junit-report@v1
51
+ if : always()
52
+ with :
53
+ github_token : ${{ secrets.GITHUB_TOKEN }}
54
+ report_paths : ' **/build/**/TEST-*.xml'
55
+ check_name : Unit Test Results
You can’t perform that action at this time.
0 commit comments