We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea0ac6b commit 1f436ddCopy full SHA for 1f436dd
.github/workflows/swift.yml
@@ -0,0 +1,12 @@
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 Package
5
+on: [push]
6
+jobs:
7
+ build:
8
+ runs-on: macos-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Build
12
+ run: swift build --triple arm64-apple-ios14.0 --sdk $(xcrun --sdk iphoneos --show-sdk-path)
Package.swift
@@ -1,4 +1,4 @@
-// swift-tools-version:5.0
+// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
0 commit comments