Skip to content

Provide a way to unload view models on log out #358

Provide a way to unload view models on log out

Provide a way to unload view models on log out #358

Workflow file for this run

name: "Build and Test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: |
dotnet build Jinaga --no-restore
dotnet build Jinaga.UnitTest --no-restore
dotnet build Jinaga.Test --no-restore
dotnet build Jinaga.Notebooks --no-restore
dotnet build Jinaga.Tool --no-restore
dotnet build Jinaga.Store.SQLite --no-restore
dotnet build Jinaga.Store.SQLite.Test --no-restore
dotnet build Jinaga.Maui --no-restore
- name: Test
run: |
dotnet test Jinaga.Test --no-build --verbosity normal
dotnet test Jinaga.Store.SQLite.Test --no-build --verbosity normal