Skip to content

- enforced minimum capacity #214

- enforced minimum capacity

- enforced minimum capacity #214

Workflow file for this run

name: .NET
on:
push:
branches: [ 'master', 'development' ]
defaults:
run:
working-directory: Ixian-DLT
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Ixian-DLT
uses: actions/checkout@v2
with:
path: Ixian-DLT
- name: Checkout Ixian-Core
uses: actions/checkout@v2
with:
repository: ProjectIxian/Ixian-Core
path: Ixian-Core
ref: ${{ github.event.push.ref }}
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@2008f912f56e61277eefaac6d1888b750582aa16
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Restore dependencies
run: nuget restore DLTNode.sln
- name: Building Ixian-DLT
run: msbuild DLTNode.sln
- name: Running Unit Tests
run: dotnet test UnitTests\bin\Debug\net6.0\unittests.dll --verbosity normal