workflows/ci: Enable pipes for the whole check job

This commit is contained in:
SebastianStork 2026-02-15 23:29:02 +01:00
parent 42ec628b17
commit e19c14daaf
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q

View file

@ -8,11 +8,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- uses: cachix/install-nix-action@v31 - uses: cachix/install-nix-action@v31
with:
extra_nix_config: experimental-features = pipe-operators
- uses: cachix/cachix-action@v15 - uses: cachix/cachix-action@v15
with: with:
name: sebastian-stork name: sebastian-stork
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix flake --extra-experimental-features pipe-operators check - run: nix flake check
deploy: deploy:
needs: check needs: check
runs-on: ubuntu-latest runs-on: ubuntu-latest