We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d7431 commit 0172009Copy full SHA for 0172009
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: CoreML Build Compile
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ main ]
6
7
+jobs:
8
+ verify-coreml:
9
+ name: Verify CoreMLDiarizerManager Builds
10
+ runs-on: macos-latest
11
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup Swift 6.1
17
+ uses: swift-actions/setup-swift@v2
18
+ with:
19
+ swift-version: '6.1'
20
21
+ - name: Build package
22
+ run: swift build
23
24
+ - name: Verify DiarizerManager runs
25
+ run: swift test --filter testManagerBasicValidation
26
+ timeout-minutes: 5
0 commit comments