Skip to content

.net8 build target framework #16

.net8 build target framework

.net8 build target framework #16

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
jobs:
build-test:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.407'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal