Skip to content

.net 10 upgrade

.net 10 upgrade #19

Workflow file for this run

name: .NET Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
- name: Setup DotNet ✨
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Install dependencies 📦️
run: dotnet restore
- name: Build 🔨
run: dotnet build --no-restore -c Release
- name: Test ✅
run: dotnet test --verbosity normal