Refactor DevelopmentHttpServer to improve exception handling in reque… #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |