From 2f1680b11b5053532e3d4c2fd8ebbb9bf5bcb4d0 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Fri, 9 Feb 2024 12:40:53 +1300 Subject: [PATCH] Add MacOS to github testing matrix --- .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 45d48b3..893ecac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,10 @@ on: jobs: nix-flake-check: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v24