diff options
| author | Vitaly Takmazov <vitalyster@gmail.com> | 2026-01-15 19:46:08 +0300 |
|---|---|---|
| committer | Vitaly Takmazov <vitalyster@gmail.com> | 2026-01-15 19:46:08 +0300 |
| commit | 4edfbefa7562bf503966bccfc43fd3dcc202fe9e (patch) | |
| tree | 3d0efc0accf0981b7e8b9e726bb57209956632eb /.github/workflows | |
| parent | f59e40a172f555c536cfc7af57536bb919d01e92 (diff) | |
chore: update CI to run on macOS and Ubuntu
Modify the CI workflow to incorporate a matrix strategy to run
build jobs on both macOS (macos-15-intel) and Ubuntu (ubuntu-24.04).
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/zen.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/zen.yml b/.github/workflows/zen.yml index c292613..f2cc47a 100644 --- a/.github/workflows/zen.yml +++ b/.github/workflows/zen.yml @@ -8,9 +8,10 @@ on: jobs: build: - - runs-on: ubuntu-latest - + strategy: + matrix: + os: [macos-15-intel, ubuntu-24.04] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: make |
