Skip to content

Add description and new code example #930

Add description and new code example

Add description and new code example #930

Workflow file for this run

name: .NET Core CI Realm Example App
on:
pull_request:
paths:
- 'examples/dotnet/**'
jobs:
build:
name: Run .NET Example App Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
7.0.x
- name: which sdks are installed
run: dotnet --list-sdks
- name: Install dependencies
run: cd examples/dotnet && dotnet restore
- name: Build
run: cd examples/dotnet && dotnet build --configuration Release --no-restore
- name: Test
run: cd examples/dotnet && dotnet test --no-restore --verbosity normal