Skip to content

WIP updating with new template #93

WIP updating with new template

WIP updating with new template #93

Workflow file for this run

name: .NET
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal