Skip to content

text-embedding-3-large mapping #20

text-embedding-3-large mapping

text-embedding-3-large mapping #20

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
jobs:
build-test:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.407'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal