We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff118b commit a3363f1Copy full SHA for a3363f1
.buildkite/pipeline.nix
@@ -39,8 +39,16 @@ in
39
];
40
};
41
42
+ scalafmt = commonAttrs // {
43
+ label = "scalafmtCheck";
44
+ command = ''
45
+ nix-shell --run '$SBT scalafmtCheck'
46
+ '';
47
+ };
48
+
49
compile = commonAttrs // {
50
label = "compile everything";
51
+ dependsOn = [ scalafmt ];
52
command = ''
53
nix-shell --run '$SBT compile-all'
54
'';
@@ -54,14 +62,6 @@ in
62
55
63
56
64
57
- scalafmt = commonAttrs // {
58
- dependsOn = [ compile ];
59
- label = "scalafmtCheck";
60
- command = ''
61
- nix-shell --run '$SBT scalafmtCheck'
- '';
- };
-
65
test-unit = commonAttrs // {
66
dependsOn = [ compile ];
67
label = "unit tests";
0 commit comments