Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign updotnet-core.yml should use `dotnet test` if tests are to be run #208
Comments
This comment has been minimized.
This comment has been minimized.
|
ad4g:master |
This comment has been minimized.
This comment has been minimized.
|
Thanks for you partipation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looking at the
dotnet-core.ymlActivity, the description of it on the listing page states that it "builds and tests" a .Net Core project. And that's the Right Thing, based on what the other listed Activities do.However, in the repo the code only does a
dotnet buildwhich will not run tests. The full command should instead bedotnet test --configuration Releasewhich will build and test the project. Small but important difference.