Skip to content

Commit

Permalink
Add macOS CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Jun 24, 2024
1 parent 2d9e7b8 commit 88334bc
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '**'

jobs:
build-and-test:
build-and-test-ubuntu:
runs-on: ubuntu-latest

steps:
Expand All @@ -32,3 +32,27 @@ jobs:

- name: Run tests
run: make test
build-and-test-macos:
runs-on: macos-latest

steps:
- name: Checkout code
uses: actions/checkout@main

- name: Install dependencies
run: |
brew install make
brew install perl
brew install openjdk
- name: Verify installations
run: |
make --version
perl --version
java -version
- name: Compile the project
run: make

- name: Run tests
run: make test

0 comments on commit 88334bc

Please sign in to comment.