Skip to content

Bump Microsoft.Data.SqlClient from 3.0.0 to 3.1.5 in /src/DurableTask.SqlServer #288

Bump Microsoft.Data.SqlClient from 3.0.0 to 3.1.5 in /src/DurableTask.SqlServer

Bump Microsoft.Data.SqlClient from 3.0.0 to 3.1.5 in /src/DurableTask.SqlServer #288

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main, testing ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main, testing ]
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
env:
SA_PASSWORD: NotASecret!12
steps:
- uses: actions/checkout@v4
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
env:
NUGET_AUTH_TOKEN: RequiredButNotUsed
- name: NuGet Restore
run: dotnet restore -v n
- name: Build
run: dotnet build
- name: Setup SQL Server container
run: test/setup.ps1
shell: pwsh
- name: Durable framework tests
run: dotnet test --no-build --verbosity normal --filter Category!=Stress ./test/DurableTask.SqlServer.Tests/DurableTask.SqlServer.Tests.csproj
- name: Functions runtime tests
run: dotnet test --no-build --verbosity normal ./test/DurableTask.SqlServer.AzureFunctions.Tests/DurableTask.SqlServer.AzureFunctions.Tests.csproj