Add SmartAgent sample and tracing improvements #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |