[ksqlDb.RestApi.Client]: WorkerService example upgraded to .NET 9 #909
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: .NET Blazor - CDC and InsideOut | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET 9.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Clean | |
run: dotnet clean InsideOut.sln --configuration Release && dotnet nuget locals all --clear | |
- name: Install dependencies | |
run: dotnet restore InsideOut.sln | |
- name: Build with dotnet | |
run: dotnet build InsideOut.sln --configuration Release | |
# Test | |
- name: Execute SqlServer Connector Unit Tests | |
run: dotnet test --filter “Category!=Integration” ./Tests/SqlServer.Connector.Tests/SqlServer.Connector.Tests.csproj |