forked from jathu/UIImageColors
-
Notifications
You must be signed in to change notification settings - Fork 7
34 lines (32 loc) · 765 Bytes
/
xcodebuild.yml
File metadata and controls
34 lines (32 loc) · 765 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: Xcode Build
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
name: Build Package
runs-on: macos-latest
strategy:
matrix:
destination:
- platform=macOS
- platform=macOS,variant=Mac Catalyst
- name=iPhone 14
- name=Apple TV
- name=Apple Watch Series 8 (45mm)
steps:
- uses: actions/checkout@v4
- name: Build
run: |
xcodebuild \
-scheme UIImageColors-Package \
-destination '${{ matrix.destination }}'
- name: Test
run: |
xcodebuild \
-scheme UIImageColors-Package \
-destination '${{ matrix.destination }}' \
test