Skip to content

Commit 0172009

Browse files
committed
add back test.yml
1 parent 33d7431 commit 0172009

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)