From 9b6a55be4157d78c80218215ef070c57f509889f Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Wed, 11 Dec 2024 12:19:57 -0800 Subject: [PATCH] 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