We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74d09a commit 47c03b0Copy full SHA for 47c03b0
.github/workflows/continuous-integration-workflow.yml
@@ -0,0 +1,35 @@
1
+name: Run tests
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ android_tests:
12
+ name: Android tests
13
+ runs-on: ubuntu-18.04
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v2
17
+ - name: Set up JDK 1.8
18
+ uses: actions/setup-java@v1
19
+ with:
20
+ java-version: 1.8
21
+ - name: Tests
22
+ run: bash ./gradlew mokttp:testDebugUnitTest
23
24
+ ios_tests:
25
+ name: iOS Tests
26
+ runs-on: macOS-latest
27
28
29
30
+ - name: Select Xcode 11.4
31
+ run: sudo xcode-select -s /Applications/Xcode_11.4.app
32
+ - name: Boot simulator
33
+ run: xcrun simctl boot "iPhone 8"
34
35
+ run: ./gradlew mokttp:iosTest
0 commit comments