Skip to content

Update nuget packages #13

Update nuget packages

Update nuget packages #13

name: Windows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
runs-on: windows-latest
steps:
- 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
- name: Test
run: dotnet test --no-build --verbosity normal --framework net8.0