From e19c14daaf2a743f171ef673de0657eb9b26861c Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 15 Feb 2026 23:29:02 +0100 Subject: [PATCH] workflows/ci: Enable pipes for the whole `check` job --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c50046a..6c9a65a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,13 @@ jobs: steps: - uses: actions/checkout@v5 - uses: cachix/install-nix-action@v31 + with: + extra_nix_config: experimental-features = pipe-operators - uses: cachix/cachix-action@v15 with: name: sebastian-stork authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - - run: nix flake --extra-experimental-features pipe-operators check + - run: nix flake check deploy: needs: check runs-on: ubuntu-latest