Skip to content

2693 option for the global switching of negative values check on and off #66

2693 option for the global switching of negative values check on and off

2693 option for the global switching of negative values check on and off #66

Workflow file for this run

name: Build PR V13
on:
pull_request:
branches:
- V13
permissions:
contents: read
packages: read
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Add GitHub feed
run: |
nuget sources add -username Open-Systems-Pharmacology -password ${{ secrets.GITHUB_TOKEN }} -name OSP-GitHub-Packages -source "https://nuget.pkg.github.com/Open-Systems-Pharmacology/index.json"
- name: Build
run: dotnet build OSPSuite.Core.sln -p:Version=12.1.9999 -p:ExcludeDesigner=true
- name : Test
run: dotnet test OSPSuite.Core.sln -v normal --no-build --logger:"html;LogFileName=/testLog_Windows.html"
- name: Push test log as artifact
uses: actions/upload-artifact@v4
with:
name: testLog_Windows
path: /testLog*.html