-
Notifications
You must be signed in to change notification settings - Fork 17
42 lines (39 loc) · 1.02 KB
/
test_all.yaml
File metadata and controls
42 lines (39 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build and Test iOS
on:
pull_request:
branches:
- master
- development
- "*_baseline"
# Cancel in-progress runs when a new workflow with the same group is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.run_id }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
plan: [
SplitiOSIntegration,
SplitiOSIntegration_1,
SplitiOSStreaming,
SplitiOSStreaming_1,
SplitiOSStreaming_2,
SplitiOSUnit,
SplitiOSUnit_1,
SplitiOSUnit_2,
SplitiOSUnit_3,
SplitiOSUnit_4,
SplitiOSUnit_5,
SemVer,
SplitPushManagerUT,
SplitStreamingUT,
SplitFlakyTests
]
scheme: [SplitTestsSwift5, SplitTestsSwift6]
fail-fast: false
uses: ./.github/workflows/base_ut.yaml
with:
test-plan: ${{ matrix.plan }}
destination: 'platform=iOS Simulator,OS=18.5,name=iPhone 16'
scheme: ${{ matrix.scheme }}