Skip to content

Adds example of using preConnectionHandler, create OnConnectionHandle… #9

Adds example of using preConnectionHandler, create OnConnectionHandle…

Adds example of using preConnectionHandler, create OnConnectionHandle… #9

Workflow file for this run

name: .NET Tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: [6.0.x, 7.0.x, 8.0.x, 9.0.x]

Check failure on line 17 in .github/workflows/dotnet.yml

View workflow run for this annotation

GitHub Actions / .NET Tests

Invalid workflow file

The workflow is not valid. .github/workflows/dotnet.yml (Line: 17, Col: 27): A sequence was not expected
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore /p:TreatWarningsAsErrors=false
- name: Test
run: dotnet test --no-build --verbosity normal