Skip to content

Bump Microsoft.Data.SqlClient from 6.1.3 to 6.1.4 #102

Bump Microsoft.Data.SqlClient from 6.1.3 to 6.1.4

Bump Microsoft.Data.SqlClient from 6.1.3 to 6.1.4 #102

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Display .NET info
run: dotnet --info
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal test/NosCore.Injector.Tests