Skip to content

Bump Microsoft.AspNetCore.SignalR.Client from 7.0.11 to 7.0.12 #303

Bump Microsoft.AspNetCore.SignalR.Client from 7.0.11 to 7.0.12

Bump Microsoft.AspNetCore.SignalR.Client from 7.0.11 to 7.0.12 #303

Workflow file for this run

name: build-and-test
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
DOTNET_VERSION: "7.0.x"
DOTNET_NOLOGO: true
jobs:
build-and-test:
name: build-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build TypedSignalR.Client.csproj
run: dotnet build ./src/TypedSignalR.Client/TypedSignalR.Client.csproj --no-restore
- name: Launch test server
run: dotnet run --project ./tests/TypedSignalR.Client.Tests.Server/TypedSignalR.Client.Tests.Server.csproj --no-restore &
- name: Test (project reference)
run: dotnet test ./tests/TypedSignalR.Client.Tests/TypedSignalR.Client.Tests.csproj --no-restore
- name: Test (NuGet)
run: dotnet test ./tests/TypedSignalR.Client.Tests.NuGet/TypedSignalR.Client.Tests.NuGet.csproj --no-restore