Skip to content

Windows

Windows #19

name: Windows
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # avoid shallow clone so that nbgv can do its work.
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.*
- name: Build
run: dotnet build --framework net8.0 --configuration $env:Configuration
- name: Test
run: dotnet test --no-build --verbosity normal --framework net8.0 --configuration $env:Configuration