Skip to content

Merge pull request #563 from Lezune/user/lezune/coderub-cleanup-v2101 #1067

Merge pull request #563 from Lezune/user/lezune/coderub-cleanup-v2101

Merge pull request #563 from Lezune/user/lezune/coderub-cleanup-v2101 #1067

Workflow file for this run

name: Standard.AI.OpenAI Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Pulling Code
uses: actions/checkout@v3
- name: Installing .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.201
- name: Restoring Packages
run: dotnet restore
- name: Building Solution
run: dotnet build --no-restore
- name: Running Tests
run: dotnet test --no-build --verbosity normal
env:
ApiKey: ${{ secrets.APIKEY }}
OrgId: ${{ secrets.ORGID }}