Skip to content

feat: add option to use native dotnet http handler for http(s) #83

feat: add option to use native dotnet http handler for http(s)

feat: add option to use native dotnet http handler for http(s) #83

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
services:
docker:
image: docker:28.1-dind
env:
DOCKER_TLS_CERTDIR: ""
ports:
- 2375:2375
options: >-
--privileged
--health-cmd "docker info || exit 1"
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
matrix:
framework:
- net8.0
- net9.0
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.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