mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2025-01-18 16:41:31 +01:00
20 lines
276 B
YAML
20 lines
276 B
YAML
|
---
|
||
|
name: test nix/install
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
nix/install:
|
||
|
runs-on: node20
|
||
|
steps:
|
||
|
- name: checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: install Nix
|
||
|
uses: ./install
|
||
|
|
||
|
- name: check the installation
|
||
|
run: |
|
||
|
type -p nix
|