We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37b2b1 commit f53d82dCopy full SHA for f53d82d
1 file changed
.github/workflows/swift.yml
@@ -0,0 +1,31 @@
1
+# This workflow will build a Swift project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3
+
4
+name: Swift
5
6
+on:
7
+ push:
8
+ branches:
9
+ - main
10
+ pull_request:
11
12
13
14
+jobs:
15
+ build:
16
+ runs-on: macos-latest
17
+ strategy:
18
+ matrix:
19
+ triple:
20
+ - "arm64-apple-ios"
21
+ - "x86_64-apple-macosx"
22
+ - "arm64-apple-watchos"
23
+ - "arm64-apple-ios-macabi"
24
+ - "arm64-apple-visionos"
25
+ - "arm64-apple-tvos"
26
+ steps:
27
+ - name: Checkout Repository
28
+ uses: actions/checkout@v4
29
+ - name: Build Swift Package
30
+ run: |
31
+ swift build --triple ${{ matrix.triple }}
0 commit comments