diff options
| author | Kiara Grouwstra <kiara.grouwstra@gmail.com> | 2024-02-10 16:49:19 +0100 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-02-12 09:57:34 +0400 |
| commit | beaffb1b976e41acd9a4801c56c1ea2840f7745e (patch) | |
| tree | 8941e5ccbe062679941ff84bc553447f45676ac5 /.github | |
| parent | 385454378bfde6f69246d5f11362c8d25a30d1eb (diff) | |
| download | niri-beaffb1b976e41acd9a4801c56c1ea2840f7745e.tar.gz niri-beaffb1b976e41acd9a4801c56c1ea2840f7745e.tar.bz2 niri-beaffb1b976e41acd9a4801c56c1ea2840f7745e.zip | |
CI: check nix build works
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
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 |
