Refactor server address handling and enforce IPv4 loopback binding #900
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup dotnet SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| global-json-file: global.json | |
| - name: setup dotnet 6.0 runtime | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: dotnet restore | |
| run: dotnet restore | |
| - name: dotnet build | |
| run: dotnet build Bravo.sln --configuration Release --no-restore | |
| - name: dotnet test | |
| run: dotnet test Bravo.sln --configuration Release --no-build --verbosity normal |