Skip to content

feat: Add .NET 10 support #88

feat: Add .NET 10 support

feat: Add .NET 10 support #88

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
framework:
- net8.0
- net9.0
- net10.0
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.x
- name: Build
run: dotnet build -c Release --framework ${{ matrix.framework }}
- name: Test
run: dotnet test -c Release --framework ${{ matrix.framework }} --no-build --logger console