Merge pull request #95473 from zowoq/gh

gitAndTools.gh: enable checks
This commit is contained in:
Martin Weinelt 2020-08-15 03:47:51 +02:00 committed by GitHub
commit ee6b6fe136
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,6 @@ buildGoModule rec {
vendorSha256 = "1xq1n583p0a3j78afprm2hk5f1hchdrx4vvphml95rv9786vjbcc";
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
buildPhase = ''
@ -31,6 +29,10 @@ buildGoModule rec {
done
'';
checkPhase = ''
make test
'';
meta = with lib; {
description = "GitHub CLI tool";
homepage = "https://cli.github.com/";