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 2c91276 commit 7578b5eCopy full SHA for 7578b5e
.github/workflows/build_and_test.yml
@@ -72,3 +72,19 @@ jobs:
72
swift-version: "6"
73
- name: Test
74
run: swift test --no-parallel
75
+
76
+ integration-test-mac:
77
+ runs-on: macos-15
78
+ steps:
79
+ - uses: actions/checkout@v4
80
+ - uses: swift-actions/[email protected]
81
+ with:
82
+ swift-version: "6"
83
+ - name: Test
84
+ run: |
85
+ curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc3-bin/spark-4.0.0-bin-hadoop3.tgz
86
+ tar xvfz spark-4.0.0-bin-hadoop3.tgz
87
+ cd spark-4.0.0-bin-hadoop3.tgz
88
+ sbin/start-connect-server.sh
89
+ cd ..
90
+ swift test --no-parallel
0 commit comments