Skip to content

Commit

Permalink
Add macOS testing to CI
Browse files Browse the repository at this point in the history
Windows does not quite work yet, there are a multitude of issues with
cel-cpp that prevent it from functioning :(
  • Loading branch information
jchadwick-buf committed Jul 24, 2024
1 parent 66834e0 commit 3c08b36
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
name: Unit tests
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Cache
uses: actions/cache@v3
Expand All @@ -24,6 +27,9 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Make
run: choco install make
if: runner.os == 'Windows'
- name: Install go
uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit 3c08b36

Please sign in to comment.