Skip to content

Commit 2348ba8

Browse files
committed
fix CI: run tests only on macOS due to plutil dependency
- Changed CI to run on macos-latest instead of Linux/Windows - Tests require plutil command which is macOS-specific - Removed matrix strategy since only one OS is needed - Fixes 'spawn plutil ENOENT' error on non-macOS runners
1 parent 516592d commit 2348ba8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ${{ matrix.os }}
12-
13-
strategy:
14-
matrix:
15-
os: [ubuntu-latest, windows-latest]
11+
runs-on: macos-latest
1612

1713
steps:
1814
- name: Checkout code

0 commit comments

Comments
 (0)