Browse Source

Add test stage

pull/5/head
Ionite 1 year ago committed by GitHub
parent
commit
e619f82a24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Jenkinsfile

4
Jenkinsfile vendored

@ -10,6 +10,10 @@ node("Windows") {
stage('Checkout') {
git branch: env.BRANCH_NAME, credentialsId: 'Ionite', url: "https://github.com/${author}/${repoName}.git"
}
stage('Test') {
bat "dotnet test StabilityMatrix.Tests"
}
stage('Build') {
bat "dotnet publish -c Release -o out -r win-x64 --self-contained true"

Loading…
Cancel
Save