Skip to content

Bump GitHub.Copilot.SDK from 0.1.33-preview.3 to 0.2.0 #6

Bump GitHub.Copilot.SDK from 0.1.33-preview.3 to 0.2.0

Bump GitHub.Copilot.SDK from 0.1.33-preview.3 to 0.2.0 #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and Test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-restore --logger trx --results-directory ./test-results
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: ./test-results
retention-days: 30