Skip to content

Fix issue #120: Upgrade to dotnet 9 #582

Fix issue #120: Upgrade to dotnet 9

Fix issue #120: Upgrade to dotnet 9 #582

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore src/port.csproj
- name: Build
run: dotnet build src/port.csproj --configuration Release
- name: Test
run: dotnet test src/port.csproj --no-restore --verbosity normal