From 93fc3907442316633a4b1544d0cdf8d17beff7be Mon Sep 17 00:00:00 2001 From: lostbean Date: Sat, 27 Jan 2024 16:06:46 -0300 Subject: [PATCH] diasble nix sandbox for tests --- .github/workflows/checks.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index dd48a9e054..7932295ead 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -10,9 +10,10 @@ jobs: - uses: actions/checkout@v3 - name: Install Nix uses: DeterminateSystems/nix-installer-action@v4 - # - name: Set Nix cache on GH Actions - # uses: DeterminateSystems/magic-nix-cache-action@v2 + - name: Set Nix cache on GH Actions + uses: DeterminateSystems/magic-nix-cache-action@v2 - name: Check Nix flake inputs uses: DeterminateSystems/flake-checker-action@v5 - name: Build Nix package - run: nix flake check + # Disable sandbox because some tests need access to internet + run: nix flake check --option sandbox false