-
-
Notifications
You must be signed in to change notification settings - Fork 108
54 lines (51 loc) · 1.27 KB
/
realtime.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
53
54
name: Realtime
on:
pull_request:
paths:
- "Sources/Realtime/**"
- "Tests/RealtimeTests/**"
- ".github/workflows/realtime.yml"
push:
branches:
- main
paths:
- "Sources/Realtime/**"
- "Tests/RealtimeTests/**"
- ".github/workflows/realtime.yml"
concurrency:
group: realtime-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test Realtime
strategy:
fail-fast: false
matrix:
xcode: ["15.4", "16"]
config: ["debug", "release"]
runs-on: macos-14
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: CONFIG="${{ matrix.config }}" make test-realtime
test-linux:
name: Test Realtime (Linux)
strategy:
fail-fast: false
matrix:
swift-version: ["5.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-deptch: 0
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift-version }}
- run: make dot-env
- name: Run tests
run: swift test --filter RealtimeTests.