Changing thumbnail to show Agent working as required by ATK team #33
Workflow file for this run
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 - Build .NET Semantic Kernel Sample Agent | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| paths: | |
| - 'dotnet/semantic-kernel/sample-agent/**/*' | |
| pull_request: | |
| branches: [ main, master ] | |
| paths: | |
| - 'dotnet/semantic-kernel/sample-agent/**/*' | |
| jobs: | |
| dotnet-semantickernel-sampleagent: | |
| name: .NET Semantic Kernel Sample Agent | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./dotnet/semantic-kernel | |
| strategy: | |
| matrix: | |
| dotnet-version: ['8.0.x'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET ${{ matrix.dotnet-version }} | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Restore dependencies | |
| run: dotnet restore SemanticKernelSampleAgent.sln | |
| - name: Build solution | |
| run: dotnet build SemanticKernelSampleAgent.sln --no-restore --configuration Release |