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 7bcc50f commit 17ce03aCopy full SHA for 17ce03a
.github/workflows/build.yml
@@ -176,3 +176,13 @@ jobs:
176
- name: Unit Tests
177
if: steps.destnameprep.outcome != 'failure'
178
run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "$SCHEME" -destination "platform=watchOS Simulator,name=$DESTNAME" | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]}
179
+
180
+ linux:
181
+ name: linux
182
+ runs-on: ubuntu-latests
183
+ steps:
184
+ - uses: actions/checkout@main
185
+ - name: Build
186
+ run: swift build
187
+ - name: Unit Tests
188
+ run: swift test
0 commit comments