Skip to content

Update to .NET 8.0, and performance fixes (#81) #380

Update to .NET 8.0, and performance fixes (#81)

Update to .NET 8.0, and performance fixes (#81) #380

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-quality: 'preview'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
- run: dotnet restore --locked-mode
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test