Some checks are pending
Build Nix modules (dry-run) / build-modules (push) Waiting to run
23 lines
410 B
YAML
23 lines
410 B
YAML
name: Build Nix modules (dry-run)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-modules:
|
|
runs-on: docker
|
|
container:
|
|
image: lix:latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Dry Run (dry-run)
|
|
env:
|
|
NIX_CONFIG: experimental-features = nix-command flakes
|
|
run: |
|
|
set -eux
|
|
./dry_run.zsh
|
|
|