forked from OpenCombine/OpenCombine
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (32 loc) · 919 Bytes
/
compatibility_tests.yml
File metadata and controls
34 lines (32 loc) · 919 Bytes
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
name: Compatibility tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
compatibility_tests_macos:
name: Execute compatibility tests
strategy:
fail-fast: false
matrix:
include:
- os: macos-13
xcode-version: "15.2" # Swift 5.9.2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Xcode
uses: OpenSwiftUIProject/setup-xcode@v2
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Swift version
run: swift --version
- name: Run tests against Apple's Combine
run: make test-compatibility
- name: Build with library evolution
run: make library-evolution
- name: Generate swiftinterface
run: make module-interface
- name: Build without private header of OSLock
run: make disable-oslock-private