From f5fe564e5198875cae68f48993483d3fa1cabd88 Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Tue, 14 May 2024 08:29:42 +0200 Subject: [PATCH] Add ci job for nix on macos This will be used to test the busted exclude tags needed in the flake. --- .github/workflows/test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ab3539..fb23c3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,6 +65,18 @@ jobs: env: TERM: dumb + macos-nix: + runs-on: macos-latest + steps: + - name: Install Nix + uses: cachix/install-nix-action@v20 + - uses: cachix/cachix-action@v12 + with: + name: nix-community + - uses: actions/checkout@v3 + - name: Run the test suite via nix + run: nix build --print-build-logs + nix: runs-on: ubuntu-latest strategy: