We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce5614 commit f41a7baCopy full SHA for f41a7ba
1 file changed
.github/workflows/CI-unixish.yml
@@ -369,12 +369,21 @@ jobs:
369
brew install coreutils python3 pcre gnu-sed
370
371
- name: Install missing Python packages
372
+ if: matrix.os == 'macos-12' || matrix.os == 'macos-13'
373
run: |
374
python3 -m pip install pip --upgrade
375
python3 -m pip install pytest
376
python3 -m pip install pytest-timeout
377
python3 -m pip install psutil
378
379
+ - name: Install missing Python packages (macos)
380
+ if: matrix.os == 'macos-14'
381
+ run: |
382
+ brew install pipx
383
+ pipx install pytest
384
+ pipx install pytest-timeout
385
+ pipx install psutil
386
+
387
- name: Build cppcheck
388
389
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
0 commit comments