Skip to content

Commit 30183d2

Browse files
committed
fix(workflow): update macOS conditionals for testing
1 parent e78873e commit 30183d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
run: choco install sqlite -y
185185

186186
- name: macos install sqlite3 without SQLITE_OMIT_LOAD_EXTENSION
187-
if: startsWith(matrix.name, 'macos-')
187+
if: matrix.name == 'macos'
188188
run: brew link sqlite --force
189189

190190
- name: android setup test environment
@@ -230,7 +230,7 @@ jobs:
230230
adb shell "sh /data/local/tmp/commands.sh"
231231
232232
- name: test sqlite-ai
233-
if: startsWith(matrix.name, 'linux-') || startsWith(matrix.name, 'windows-') || startsWith(matrix.name, 'macos-')
233+
if: startsWith(matrix.name, 'linux-') || startsWith(matrix.name, 'windows-') || matrix.name == 'macos'
234234
run: make test
235235

236236
- uses: actions/upload-artifact@v4.6.2

0 commit comments

Comments
 (0)