File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a Java project with Gradle
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3
+
4
+ name : Project CI
5
+
6
+ on :
7
+ push :
8
+ branches : [ master, dev ]
9
+ pull_request :
10
+ branches : [ master, dev ]
11
+
12
+ jobs :
13
+ test_android_jvm_linux :
14
+ runs-on : ubuntu-latest
15
+ container : mingc/android-build-box
16
+ steps :
17
+ - name : Grant execute permission for gradlew
18
+ run : chmod +x gradlew
19
+ - name : Test android
20
+ run : ./gradlew testDebugUnitTest
21
+ - name : Test jvm
22
+ run : ./gradlew jvmTest
23
+ - name : Test linux
24
+ run : ./gradlew linuxX64Test
25
+ test_mac :
26
+ runs-on : macos-latest
27
+ steps :
28
+ - name : Grant execute permission for gradlew
29
+ run : chmod +x gradlew
30
+ - name : Test mac
31
+ run : ./gradlew macosX64Test
32
+ - name : Test ios
33
+ run : ./gradlew iosX64Test
34
+ - name : Test tvos
35
+ run : ./gradlew tvosX64Test
36
+ test_windows :
37
+ runs-on : windows-latest
38
+ steps :
39
+ - name : Test windows
40
+ run : gradle mingwX64Test
41
+
42
+
You can’t perform that action at this time.
0 commit comments