Skip to content

Migrating delivery workflows to NuGet Trusted Publishing #62

Migrating delivery workflows to NuGet Trusted Publishing

Migrating delivery workflows to NuGet Trusted Publishing #62

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
integration:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET 8.0 SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.0.x'
- name: Setup .NET 9.0 SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Setup .NET 10.0 SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build