Skip to content

Commit

Permalink
Make Appveyor run tests before creating nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelbu committed Jun 17, 2018
1 parent 44312f6 commit 43e9b9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image: Visual Studio 2017

build_script:
- ps: .\build.ps1 -Target "Pack" -Configuration "Release"
- ps: .\build.ps1 -Target "Appveyor" -Configuration "Release"

# disable built-in tests.
test: off
Expand Down
5 changes: 5 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,11 @@ Task("Default")
.IsDependentOn("Build")
.IsDependentOn("Test");

Task("Appveyor")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Pack");

//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 43e9b9f

Please sign in to comment.