Skip to content

Commit 59f4660

Browse files
authored
Add CI workflow (#18)
1 parent fb64b01 commit 59f4660

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/CI.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
env:
12+
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer
13+
14+
jobs:
15+
build:
16+
name: Build
17+
runs-on: macOS-14
18+
strategy:
19+
matrix:
20+
destination:
21+
- "generic/platform=iOS"
22+
- "platform=macOS"
23+
24+
steps:
25+
- uses: actions/checkout@v3
26+
- name: Build platform ${{ matrix.destination }}
27+
run: set -o pipefail && xcodebuild build -scheme Upscaling -destination "${{ matrix.destination }}" | xcbeautify --renderer github-actions

0 commit comments

Comments
 (0)