Skip to content

Update to .NET 10 (#40) #103

Update to .NET 10 (#40)

Update to .NET 10 (#40) #103

Workflow file for this run

name: Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.1
- name: Setup .NET Core
uses: actions/setup-dotnet@v5.1.0
with:
dotnet-version: 10.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal