Skip to content

Merge 'stable' to 'main' #240

Merge 'stable' to 'main'

Merge 'stable' to 'main' #240

Workflow file for this run

name: Unit test
on:
pull_request:
branches: [ main, stable ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install wasm-tools
run: dotnet workload install wasm-tools
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal