diff options
| -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 |
