Skip to content

Commit

Permalink
Merge pull request #1 from geappliances/improve-ci-coverage
Browse files Browse the repository at this point in the history
Improve CI coverage
  • Loading branch information
ryanplusplus authored Nov 15, 2024
2 parents 06511fb + 15e4a68 commit f41eb59
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-13]
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-latest, macos-14, macos-latest]

steps:
- name: Install CppUTest
Expand All @@ -28,4 +28,10 @@ jobs:
with:
submodules: 'recursive'

- name: Configure brew paths on macOS
if: contains(matrix.os, 'macos')
run: |
echo CPATH="$CPATH:$(brew --prefix)/include" >> $GITHUB_ENV
echo LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib" >> $GITHUB_ENV
- run: make -j${{ steps.cpu-cores.outputs.count }}

0 comments on commit f41eb59

Please sign in to comment.