From beaffb1b976e41acd9a4801c56c1ea2840f7745e Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sat, 10 Feb 2024 16:49:19 +0100 Subject: CI: check nix build works --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3828a500..1b3e3715 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,3 +143,18 @@ jobs: - uses: Swatinem/rust-cache@v2 - run: cargo build --all + nix: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: Check flake inputs + uses: DeterminateSystems/flake-checker-action@v4 + continue-on-error: true + + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@v3 + continue-on-error: true + + - run: nix build + continue-on-error: true -- cgit