From e619f82a24d2b1d40fe22e289c2fad1b893c0fc2 Mon Sep 17 00:00:00 2001 From: Ionite Date: Wed, 7 Jun 2023 19:03:16 -0400 Subject: [PATCH] Add test stage --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index b80999a3..7f208420 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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"