Skip to content

Add new Soroban contracts for balance verification and hello world ex… #5

Add new Soroban contracts for balance verification and hello world ex…

Add new Soroban contracts for balance verification and hello world ex… #5

Workflow file for this run

name: .NET Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
- name: Restore dependencies
run: dotnet restore
- name: Build the project
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal