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 bd16d48 commit ad6665bCopy full SHA for ad6665b
.github/workflows/spm.yml
@@ -0,0 +1,21 @@
1
+name: Swift
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: macos-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: SPM Build
11
+ run: swift build
12
+ - name: SPM Test
13
+ run: swift test
14
+ - name: macOS Build
15
+ run: xcodebuild build -scheme B9Action -destination 'generic/platform=macOS' | xcpretty
16
+ - name: iOS Build
17
+ run: xcodebuild build -scheme B9Action -destination 'generic/platform=iOS' | xcpretty
18
+ - name: tvOS Build
19
+ run: xcodebuild build -scheme B9Action -destination 'generic/platform=tvOS' | xcpretty
20
+ - name: watchOS Build
21
+ run: xcodebuild build -scheme B9Action -destination 'generic/platform=watchOS' | xcpretty
0 commit comments