Skip to content

Commit

Permalink
CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
IxiAngel committed Dec 22, 2020
1 parent 9a136b3 commit 2fb10d4
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: .NET

on:
push:
branches: [ 'master', 'development' ]

defaults:
run:
working-directory: Ixian-LiteWallet

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout Ixian-LiteWallet
uses: actions/checkout@v2
with:
path: Ixian-LiteWallet

- 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 IxianLiteWallet\IxianLiteWallet.sln

- name: Building Ixian-LiteWallet
run: msbuild IxianLiteWallet\IxianLiteWallet.sln

#- name: Running Unit Tests
# run: dotnet test UnitTests\bin\Debug\unittests.dll --verbosity normal

0 comments on commit 2fb10d4

Please sign in to comment.