Skip to content

109: Removed custom HttpClient from LLM dependency injection #35

109: Removed custom HttpClient from LLM dependency injection

109: Removed custom HttpClient from LLM dependency injection #35

Workflow file for this run

name: ASSISTENTE - RUN UNIT TESTS
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: ⚙️ Setup .NET 8 SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: 🔗 Restore dependencies
run: dotnet restore ./API
- name: 📂 Build project
run: dotnet build ./API --no-restore
- name: 🚀 Run tests
run: dotnet test ./API --no-build --verbosity normal