mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2026-03-09 05:20:21 +00:00
19 lines
524 B
YAML
19 lines
524 B
YAML
name: install-nix
|
|
description: Composite action to checkout the repo and install Nix with flakes enabled
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v31
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
|
|
- name: Prewarm flake devShell
|
|
run: |
|
|
# use the flake devShell defined in ./flake.nix to fetch deps
|
|
nix develop --command true
|
|
shell: bash
|