From e29368ed3529c4af5d4fa146552b14230ff2169e Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Tue, 24 Feb 2026 22:27:55 +0000 Subject: [PATCH] ci: run nix build on ubuntu and macos --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cd6460..cbdd4e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,10 @@ jobs: nix-build: name: Nix Build - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macOS-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v6 with: