mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
19 lines
506 B
YAML
19 lines
506 B
YAML
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- uses: cachix/install-nix-action@v13
|
|
with:
|
|
install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20210429_d15a196/install
|
|
extra_nix_config: experimental-features = nix-command flakes
|
|
|
|
- name: Run Nix Flake Check
|
|
run: nix -Lv flake check
|
|
|
|
- name: Check Nix parsing
|
|
run: nix -Lv develop -c "evalnix"
|