1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00

eval-tests: Fix warnings

This commit is contained in:
Robert Hensing 2023-01-04 20:09:46 +01:00
parent 87673d7c13
commit 836c38aa2a

View file

@ -17,13 +17,13 @@ rec {
};
empty = mkFlake
{ self = { }; }
{ inputs.self = { }; }
{
systems = [ ];
};
example1 = mkFlake
{ self = { }; }
{ inputs.self = { }; }
{
systems = [ "a" "b" ];
perSystem = { system, ... }: {
@ -32,7 +32,7 @@ rec {
};
easyOverlay = mkFlake
{ self = { }; }
{ inputs.self = { }; }
{
imports = [ flake-parts.flakeModules.easyOverlay ];
systems = [ "a" ];