diff options
author | Azat Bahawi <azahi@teknik.io> | 2021-12-08 04:20:09 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2021-12-08 04:20:09 +0300 |
commit | a1886c8a5faaa796e239aad96a5cd7d914affb2e (patch) | |
tree | 13f9062f93b41972cb71305d3268e24f8bb428d9 /.gitlab-ci.yml | |
parent | Even more stuff (diff) |
Test gitlab CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f88c3cd --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +--- +image: nixpkgs/nix-flakes:latest +variables: + NIX_PATH: "nixpkgs=channel:nixpkgs-unstable" + +stages: + - test + +test: + stage: test + script: + - nix --version + - nix flake check |