Skip to content

Instantly share code, notes, and snippets.

@bpholt
Created February 23, 2015 20:33
Show Gist options
  • Save bpholt/441d87cb9592521cef43 to your computer and use it in GitHub Desktop.
Save bpholt/441d87cb9592521cef43 to your computer and use it in GitHub Desktop.
SBT Pipeline
lazy val pipeline = TaskKey[Unit]("pipeline", "Runs the full build pipeline: compile, test, integration tests")
pipeline <<= (test in IntegrationTest).dependsOn(test in Test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment