Skip to content

Add SmartAgent sample and tracing improvements #2

Add SmartAgent sample and tracing improvements

Add SmartAgent sample and tracing improvements #2

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 11.0.x
dotnet-quality: preview
- name: Restore
run: dotnet restore IAW.slnx
- name: Build
run: dotnet build IAW.slnx --no-restore --configuration Release
- name: Test
run: dotnet test IAW.slnx --no-build --configuration Release --verbosity normal