Skip to content

update/dotnet-10

update/dotnet-10 #343

Workflow file for this run

name: .NET
on:
push:
branches:
- 'main'
- 'release'
pull_request:
branches:
- '**'
env:
USE_FULL_NUMERIC_PROVIDER: "true"
MSBUILDDISABLENODEREUSE: "1" # Disable MSBuild node reuse to prevent hang
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test (.NET 8.0)
run: dotnet test --no-build --framework net8.0 --verbosity quiet
- name: Test (.NET 9.0)
run: dotnet test --no-build --framework net9.0 --verbosity quiet
- name: Test (.NET 10.0)
run: dotnet test --no-build --framework net10.0 --verbosity quiet