Workflows: add Nix CI

This commit is contained in:
Mihai Fufezan 2022-09-02 21:36:27 +03:00 committed by Mihai Fufezan
parent 5f7977c6a4
commit b3bb8ea12e
1 changed files with 21 additions and 0 deletions

21
.github/workflows/nix-build.yaml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Build Hyprpicker (Nix)
on: [push, pull_request, workflow_dispatch]
jobs:
nix:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install nix
uses: cachix/install-nix-action@v17
with:
install_url: https://releases.nixos.org/nix/nix-2.10.3/install
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- name: Build Hyprpicker with default settings
run: nix build --print-build-logs