From 12e5225c9c2b4767c6fd905da81260b92d46d99c Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Sat, 20 Nov 2021 11:37:06 -0800 Subject: [PATCH] ci: fix NixOS tests, try macos --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b6d2ec7..e95e827 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,8 +4,11 @@ on: push: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: [ ubuntu-20.04, macos-11 ] steps: - uses: actions/checkout@v2.3.4 - uses: cachix/install-nix-action@v15 + with: + extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm" + - run: nix build - run: nix flake check