29 lines
598 B
YAML
29 lines
598 B
YAML
|
name: Test modules
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- 'modules/**'
|
||
|
- 'test.nix'
|
||
|
- 'flake.*'
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- 'modules/**'
|
||
|
- 'test.nix'
|
||
|
- 'flake.*'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
run-vm:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: cachix/install-nix-action@v20
|
||
|
with:
|
||
|
extra_nix_config: "system-features = benchmark big-parallel kvm nixos-test uid-range"
|
||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||
|
|
||
|
- name: Run VM
|
||
|
run: nix build -Lv .#checks.x86_64-linux.module-vm-test
|