CODE RUB: Foundations AudioTranscriptions Exceptions Update v2.10.1 #1054
Workflow file for this run
This file contains 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: 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 }} |