Add missing ConfigureAwait() statement #362
Workflow file for this run
This file contains 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: | |
push: | |
jobs: | |
ci: | |
runs-on: windows-latest | |
name: Code analysis and tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build solution | |
run: dotnet build Geodatenbezug.sln -c Release /warnaserror | |
- name: Run tests | |
run: dotnet test Geodatenbezug.sln -c Release --no-build --verbosity normal --settings ./Geodatenbezug.Test/test.runsettings |