diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2020-04-02 11:28:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 11:28:07 +0200 |
commit | d56bb3363b91d5511764c43c296c9a360ae5220b (patch) | |
tree | 169b63725c4b45a0dfa30adad8b159ebcb1d338a /scripts | |
parent | 4a071edf5737373df72fab0f31e58fdde3bab94f (diff) | |
parent | c39d5d6f8ccb880a724cff59a27c87e2da0178dd (diff) | |
download | clever-tools-nix-d56bb3363b91d5511764c43c296c9a360ae5220b.tar.gz clever-tools-nix-d56bb3363b91d5511764c43c296c9a360ae5220b.tar.zst clever-tools-nix-d56bb3363b91d5511764c43c296c9a360ae5220b.zip |
Merge pull request #12 from paulrbr-fl/update-clever-tools
ci: make sure to check ALL versions during tests
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/check.nix | 4 | ||||
-rwxr-xr-x | scripts/check.sh | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/scripts/check.nix b/scripts/check.nix new file mode 100644 index 0000000..1a344c6 --- /dev/null +++ b/scripts/check.nix | |||
@@ -0,0 +1,4 @@ | |||
1 | with import <nixpkgs> {}; | ||
2 | |||
3 | # Check all versions | ||
4 | lib.collect lib.isDerivation (callPackage ../default.nix {}) | ||
diff --git a/scripts/check.sh b/scripts/check.sh new file mode 100755 index 0000000..ffef74b --- /dev/null +++ b/scripts/check.sh | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | [ "$(clever --version)" = "1.6.3" ] | ||