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