Skip to content

fix: Handle 101 Upgrade responses by ignoring Content-Length #101

fix: Handle 101 Upgrade responses by ignoring Content-Length

fix: Handle 101 Upgrade responses by ignoring Content-Length #101

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
framework:
- net8.0
- net9.0
- net10.0
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.x
- name: Build
run: dotnet build -c Release --framework ${{ matrix.framework }}
- name: Test
run: dotnet test -c Release --framework ${{ matrix.framework }} --no-build --logger console