-
Notifications
You must be signed in to change notification settings - Fork 6
52 lines (47 loc) · 1.21 KB
/
integrationTests.yml
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
43
44
45
46
47
48
49
50
51
52
name: Integration Tests
on:
schedule:
- cron: 0 2 * * 1-5
workflow_dispatch:
jobs:
test-13-Integration-Unit:
name: Run Tests macOS 13.0
runs-on: macos-13
strategy:
fail-fast: false
matrix:
xcode: ["Xcode_14.1", "Xcode_14.2", "Xcode_14.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select ${{ matrix.xcode }}
run: sudo xcode-select --switch /Applications/${{ matrix.xcode }}.app
- name: Unit tests
run: make tests/unit/pretty
test-Integration-macOS:
runs-on: macos-latest
env:
DD_API_KEY: '${{ secrets.DD_API_KEY }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: tests macOS
run: make tests/integration/macOS/pretty
test-Integration-iOS:
runs-on: macos-latest
env:
DD_API_KEY: '${{ secrets.DD_API_KEY }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: tests iOS
run: make tests/integration/iOS/pretty
test-Integration-tvOS:
runs-on: macos-latest
env:
DD_API_KEY: '${{ secrets.DD_API_KEY }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: tests tvOS
run: make tests/integration/tvOS/pretty