mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2024-11-16 16:15:58 +01:00
Workflows: add Nix CI
This commit is contained in:
parent
28b53cbbcd
commit
0fa4290178
1 changed files with 21 additions and 0 deletions
21
.github/workflows/nix-build.yaml
vendored
Normal file
21
.github/workflows/nix-build.yaml
vendored
Normal 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
|
Loading…
Reference in a new issue