Skip to content

- DA improvements and fixes #257

- DA improvements and fixes

- DA improvements and fixes #257

Workflow file for this run

name: .NET
on:
push:
branches: [ 'master', 'development' ]
defaults:
run:
working-directory: Ixian-DLT
jobs:
build:
runs-on: ubuntu-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 }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Building Ixian-DLT
run: dotnet build
#- name: Running Unit Tests
# run: dotnet test UnitTests\bin\Debug\net8.0\unittests.dll --verbosity normal