From 9dafa3a44f565a05a5bd01233bc249237d4533e2 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Wed, 11 Dec 2024 12:16:51 -0800 Subject: [PATCH 1/2] ci: add macos runner --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 41507bf..6c4d276 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ on: jobs: zig: name: Zig CI - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, macos-latest] strategy: matrix: zig_version: ["0.13.0"] # eventually use multiple versions once stable From 9b6a55be4157d78c80218215ef070c57f509889f Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Wed, 11 Dec 2024 12:19:57 -0800 Subject: [PATCH 2/2] ci: fix workflow run matrix --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6c4d276..9929cfd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,9 +9,10 @@ on: jobs: zig: name: Zig CI - runs-on: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, macos-latest] zig_version: ["0.13.0"] # eventually use multiple versions once stable rust: - stable