summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ci.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/ci.nix b/ci.nix
new file mode 100644
index 0000000..cdb3198
--- /dev/null
+++ b/ci.nix
@@ -0,0 +1,8 @@
+let
+ pkgs = import <nixpkgs> {};
+in {
+ test = pkgs.writeScript "test" ''
+ #!/bin/sh
+ nix-build "${toString ./tests/test.nix}";
+ '';
+}