1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-04-08 09:54:35 +00:00

add nixos tests to checks

This commit is contained in:
Jörg Thalheim 2022-05-13 22:52:46 +02:00
parent d27137c0a1
commit f04ef790f6
No known key found for this signature in database

View file

@ -26,6 +26,8 @@
packages = forAllSystems (system: import ./default.nix {
pkgs = import nixpkgs { inherit system; };
});
checks = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ]
(system: self.packages.${system}.sops-install-secrets.tests);
defaultPackage = forAllSystems (system: self.packages.${system}.sops-init-gpg-key);
};
}