Skip to content

ci: add .NET 10 SDK to build; scope publish to SDK project only #9

ci: add .NET 10 SDK to build; scope publish to SDK project only

ci: add .NET 10 SDK to build; scope publish to SDK project only #9

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal