Skip to content

Merge pull request #61 from nenoNaninu/update_TypeValidator #51

Merge pull request #61 from nenoNaninu/update_TypeValidator

Merge pull request #61 from nenoNaninu/update_TypeValidator #51

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
DOTNET_VERSION: "8.0.x"
DOTNET_NOLOGO: true
jobs:
build:
name: build
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.DevTools.csproj
run: dotnet build ./src/TypedSignalR.Client.DevTools/TypedSignalR.Client.DevTools.csproj --no-restore