Skip to content

Still try to fix copying files during deployment #204

Still try to fix copying files during deployment

Still try to fix copying files during deployment #204

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: 7.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