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 2869b13 commit 1799164Copy full SHA for 1799164
build.sbt
@@ -27,7 +27,10 @@ ThisBuild / githubWorkflowBuildMatrixInclusions +=
27
val tzdbVersion = "2019c"
28
val scalajavaLocalesVersion = "1.5.4"
29
Global / onChangedBuildSource := ReloadOnSourceChanges
30
-Global / concurrentRestrictions += Tags.limit(NativeTags.Link, 1)
+Global / concurrentRestrictions ++= List(
31
+ Tags.limit(NativeTags.Link, 1),
32
+ Tags.limit(Tags.Test, 1)
33
+)
34
35
lazy val downloadFromZip: TaskKey[Unit] =
36
taskKey[Unit]("Download the tzdb tarball and extract it")
0 commit comments