refactor: Update target framework to net8.0 and use Microsoft.Extensions.AI #156
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Build: | |
runs-on: windows-latest | |
env: | |
NUGET_PACKAGES: ${{ github.workspace }}\.nuget\packages | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore --locked-mode | |
- name: Add appsettings.Local.json | |
run: cp src/Cellm/appsettings.Local.Ollama.json src/Cellm/appsettings.Local.json | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --filter ClassName=Cellm.Tests.UnitTests --no-build --verbosity normal | |
Lint: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Lint solution | |
run: dotnet format --verify-no-changes |