We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb64b01 commit 59f4660Copy full SHA for 59f4660
.github/workflows/CI.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
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