Skip to content

Remove swnfd from ClientDllMap #2

Remove swnfd from ClientDllMap

Remove swnfd from ClientDllMap #2

Workflow file for this run

name: Build & Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.2.2
with:
submodules: true
- name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 10.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore /p:WarningsAsErrors=nullable
- name: Run tests
run: dotnet test --no-build -- NUnit.ConsoleOut=0