Skip to content

Changing thumbnail to show Agent working as required by ATK team #14

Changing thumbnail to show Agent working as required by ATK team

Changing thumbnail to show Agent working as required by ATK team #14

name: CI - Build .NET Agent Framework Sample Agent
permissions:
contents: read
on:
push:
branches: [ main, master ]
paths:
- 'dotnet/agent-framework/sample-agent/**/*'
pull_request:
branches: [ main, master ]
paths:
- 'dotnet/agent-framework/sample-agent/**/*'
jobs:
dotnet-agentframework-sampleagent:
name: .NET Agent Framework Sample Agent
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./dotnet/agent-framework
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 AgentFrameworkSample.sln
- name: Build solution
run: dotnet build AgentFrameworkSample.sln --no-restore --configuration Release