Skip to content

Commit

Permalink
Add CI test on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jul 2, 2024
1 parent 38b3c88 commit 52354a2
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ concurrency:
jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }}
runs-on: ubuntu-latest
name: ${{ matrix.gap-branch }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
Expand All @@ -30,13 +30,21 @@ jobs:
- stable-4.11
- stable-4.10
- stable-4.9
os: [ubuntu-latest]
include:
- gap-branch: master
os: macos-latest

steps:
- uses: actions/checkout@v4
- name: 'Install additional dependencies'
run: |
sudo apt-get update
sudo apt-get install libczmq-dev
if [ "$RUNNER_OS" == "macOS" ]; then
brew install zmq
else
sudo apt-get update
sudo apt-get install libczmq-dev
fi
- uses: gap-actions/setup-gap@v2
with:
GAPBRANCH: ${{ matrix.gap-branch }}
Expand Down

0 comments on commit 52354a2

Please sign in to comment.