Skip to content

Merge tag 'fix-tests' into develop #125

Merge tag 'fix-tests' into develop

Merge tag 'fix-tests' into develop #125

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: BUILD-TEST
on:
push:
branches: [ "master","develop" ]
pull_request:
branches: [ "master","develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: microsoft/variable-substitution@v1
with:
files: '**/appsettings.json'
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_ORGANIZATION: ${{ secrets.OPENAI_ORGANIZATION }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
7.0.x
6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
# Temporary disbled due to expenses
# - name: Test
# run: dotnet test --no-build --verbosity normal