From dca2e4ffbf780a9c5e6c919809aa2f0326ca3d5e Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Thu, 12 Feb 2026 18:31:12 +0100 Subject: [PATCH] Add build-modules.yml for Nix module dry-run workflow --- .forgejo/workflows/build-modules.yml | 23 +++++++++++++++++++++++ copy_pasta.zsh => dry_run.zsh | 0 2 files changed, 23 insertions(+) create mode 100644 .forgejo/workflows/build-modules.yml rename copy_pasta.zsh => dry_run.zsh (100%) mode change 100644 => 100755 diff --git a/.forgejo/workflows/build-modules.yml b/.forgejo/workflows/build-modules.yml new file mode 100644 index 0000000..96e45c0 --- /dev/null +++ b/.forgejo/workflows/build-modules.yml @@ -0,0 +1,23 @@ +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 + diff --git a/copy_pasta.zsh b/dry_run.zsh old mode 100644 new mode 100755 similarity index 100% rename from copy_pasta.zsh rename to dry_run.zsh