Update core packages and made global exception handling true in builder arguments #22
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: Windows Client (dotnet build and test) | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
os-tests: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./src/CSharp/EasyMicroservices.PaymentsMicroservice.Client.sln | |
- name: Build | |
run: dotnet build ./src/CSharp/EasyMicroservices.PaymentsMicroservice.Client.sln --no-restore | |
- name: Test | |
run: dotnet test ./src/CSharp/EasyMicroservices.PaymentsMicroservice.Client.sln --no-build --verbosity normal |