Skip to content

Refactor DevelopmentHttpServer to improve exception handling in reque… #18

Refactor DevelopmentHttpServer to improve exception handling in reque…

Refactor DevelopmentHttpServer to improve exception handling in reque… #18

Workflow file for this run

name: build
on:
push:
branches: [main]
paths-ignore:
- '**.md'
- 'examples/**'
- 'LICENSE'
- '.gitignore'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['9.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install solution dependencies
run: |
dotnet restore Ditto.sln --force-evaluate --no-http-cache --force
- name: Test Core
run: |
dotnet build src/Ditto/src -c Release
dotnet test src/Ditto/test -c Release