-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 856 Bytes
/
xcodebuild.yml
File metadata and controls
39 lines (37 loc) · 856 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
35
36
37
38
39
name: Xcode Build
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
build-test-package:
name: Build & Test Package
strategy:
matrix:
destination:
- platform=macOS
- platform=macOS,arch=x86_64,variant=Mac Catalyst
- name=iPhone 17
- name=Apple TV 4K (3rd generation)
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- name: Build
run: |
xcodebuild \
-scheme FHPropertyWrappers \
-destination '${{ matrix.destination }}'
- name: Test
run: |
xcodebuild \
-scheme FHPropertyWrappers \
-destination '${{ matrix.destination }}' \
test